 6814b290eb
			
		
	
	
		6814b290eb
		
	
	
	
	
		
			
			* Starts porting dashboard to the wagtail base page * Dashboard mk 2 * Dashboard mk 3 * Last dashboard work for now
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <tr>
 | |
|     <td>
 | |
|         <a href="{% url "proposal_detail" proposal.pk %}">{{ proposal.title }}</a>
 | |
|     </td>
 | |
| 
 | |
|     <td>{{ proposal.kind.name }}</td>
 | |
| 
 | |
|     <td>
 | |
|         {% if proposal.cancelled %}
 | |
|             <span class="label label-danger">Cancelled</span>
 | |
|         {% else %}
 | |
|             {% if request.user == proposal.speaker.user %}
 | |
|                 {% if proposal.result.status == "accepted" %}
 | |
|                     <span class="label label-success">Accepted</span>
 | |
|                 {% else %}
 | |
|                     <span class="label label-default">Submitted</span>
 | |
|                 {% endif %}
 | |
|             {% else %}
 | |
|                 <span class="label label-default">Associated</span>
 | |
|             {% endif %}
 | |
|         {% endif %}
 | |
|     </td>
 | |
| 
 | |
|     <td>
 | |
|         {% if not proposal.cancelled %}
 | |
|             {% if request.user == proposal.speaker.user and proposal.can_edit %}
 | |
|               <ul>
 | |
|                 <li><a href="{% url "proposal_edit" proposal.pk %}"><i class="fa fa-pencil"></i> Edit</a></li>
 | |
|                 <li><a href="{% url "proposal_speaker_manage" proposal.id %}"><i class="fa fa-user"></i> Manage Additional Speakers</a></li>
 | |
|               </ul>
 | |
|             {% endif %}
 | |
|         {% endif %}
 | |
|     </td>
 | |
| </tr>
 |