| 
									
										
										
										
											2012-08-14 03:49:57 -04:00
										 |  |  | {% load i18n %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <dl class="dl-horizontal"> | 
					
						
							|  |  |  |     <dt>{% trans "Submitted by" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.speaker }}</dd> | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     <dt>{% trans "Track" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.track }} </dd> | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-08-22 16:28:42 -06:00
										 |  |  |     <dt>{% trans "Audience Level" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.get_audience_level_display }} </dd> | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-08-14 03:49:57 -04:00
										 |  |  |     {% if proposal.additional_speakers.all %} | 
					
						
							| 
									
										
										
										
											2012-08-14 17:20:43 -04:00
										 |  |  |         <dt>{% trans "Addl Speakers" %}</dt> | 
					
						
							| 
									
										
										
										
											2012-08-14 03:49:57 -04:00
										 |  |  |         <dd> | 
					
						
							|  |  |  |             {% for speaker in proposal.additional_speakers.all %} | 
					
						
							|  |  |  |                 <li> | 
					
						
							|  |  |  |                     {% if speaker.user %} | 
					
						
							| 
									
										
										
										
											2012-08-14 17:20:17 -04:00
										 |  |  |                         <strong>{{ speaker.name }}</strong> <{{ speaker.email }}> | 
					
						
							| 
									
										
										
										
											2012-08-14 03:49:57 -04:00
										 |  |  |                     {% else %} | 
					
						
							|  |  |  |                         {{ speaker.email }} ({% trans "Invitation Sent" %}) | 
					
						
							|  |  |  |                     {% endif %} | 
					
						
							|  |  |  |                 </li> | 
					
						
							|  |  |  |             {% endfor %} | 
					
						
							|  |  |  |         </dd> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     <dt>{% trans "Description" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.description }} </dd> | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     <dt>{% trans "Abstract" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.abstract|safe }} </dd> | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     <dt>{% trans "Notes" %}</dt> | 
					
						
							|  |  |  |     <dd>{{ proposal.additional_notes|safe }} </dd> | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-08-14 17:21:47 -04:00
										 |  |  |     <dt>{% trans "Documents" %}</dt> | 
					
						
							|  |  |  |     <dd> | 
					
						
							|  |  |  |         {% if proposal.supporting_documents.exists %} | 
					
						
							|  |  |  |             <table class="table table-striped"> | 
					
						
							|  |  |  |                 {% for document in proposal.supporting_documents.all %} | 
					
						
							|  |  |  |                     <tr> | 
					
						
							|  |  |  |                         <td><a href="{{ document.download_url }}">{{ document.description }}</a></td> | 
					
						
							|  |  |  |                         <td> | 
					
						
							|  |  |  |                         <form style="margin: 0;" method="post" action="{% url proposal_document_delete document.pk %}"> | 
					
						
							|  |  |  |                             {% csrf_token %} | 
					
						
							|  |  |  |                             <button type="submit" class="btn btn-mini">delete</button> | 
					
						
							|  |  |  |                         </form> | 
					
						
							|  |  |  |                     </td> | 
					
						
							|  |  |  |                     </tr> | 
					
						
							|  |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </table> | 
					
						
							|  |  |  |         {% else %} | 
					
						
							|  |  |  |             No supporting documents attached to this proposal. | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							|  |  |  |     </dd> | 
					
						
							| 
									
										
										
										
											2012-08-14 03:49:57 -04:00
										 |  |  | </dl> |