| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% extends "site_base.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% load sitetree %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head_title %}Presentation: {{ presentation.title }}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block body %} | 
					
						
							|  |  |  |     {% if presentation.slot %} | 
					
						
							|  |  |  |         <h4> | 
					
						
							|  |  |  |             {{ presentation.slot.day.date|date:"l" }} | 
					
						
							|  |  |  |             {{ presentation.slot.start}}–{{ presentation.slot.end }} | 
					
						
							|  |  |  |         </h4> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |     <h2>{{ presentation.title }}</h2> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <h4> | 
					
						
							|  |  |  |         {% for speaker in presentation.speakers %} | 
					
						
							|  |  |  |             <a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a>{% if not forloop.last %}, {% endif %}{% endfor %} | 
					
						
							|  |  |  |     </h4> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dl class="dl-horizontal"> | 
					
						
							|  |  |  |         <dt>Audience level:</dt> | 
					
						
							|  |  |  |         <dd style="margin-bottom: 0;">{{ presentation.proposal.get_audience_level_display }}</dd> | 
					
						
							|  |  |  |     </dl> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <h3>Abstract</h3> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-03 19:22:47 +10:00
										 |  |  |     <div class="abstract">{{ presentation.abstract_html|safe }}</div> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% endblock %} |