| 
									
										
										
										
											2016-09-18 20:40:55 +10:00
										 |  |  | {% extends "symposion/schedule/public_base.html" %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% load i18n %} | 
					
						
							|  |  |  | {% load cache %} | 
					
						
							| 
									
										
										
										
											2017-01-10 15:12:07 +11:00
										 |  |  | {% load pyconau2017_tags %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% load sitetree %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head_title %}Presentation Listing{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-18 20:40:55 +10:00
										 |  |  | {% block header_title %}{{ schedule.section.name }} List{% endblock %} | 
					
						
							|  |  |  | {% block header_paragraph %}{{ schedule.header_paragraph.text }}{% endblock%} | 
					
						
							|  |  |  | {% block header_inset_image %}{% illustration "lavender.svg" %}{% endblock %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-18 20:40:55 +10:00
										 |  |  | {% block content %} | 
					
						
							|  |  |  |   {% cache 600 "schedule-list" schedule.section.name %} | 
					
						
							|  |  |  |     <ul> | 
					
						
							|  |  |  |       {% for presentation in presentations %} | 
					
						
							|  |  |  |         <li> | 
					
						
							|  |  |  |           <a href="{% url "schedule_presentation_detail" presentation.pk %}">{{ presentation.title }}</a> {{ presentation.proposal.kind }} <em>by</em> | 
					
						
							|  |  |  |           {{ presentation.speakers|join:", " }} | 
					
						
							|  |  |  |           {% if presentation.slot %} | 
					
						
							|  |  |  |             ({{ presentation.slot.day.date|date:"l" }} | 
					
						
							|  |  |  |             {{ presentation.slot.start}}–{{ presentation.slot.end }} | 
					
						
							|  |  |  |             in | 
					
						
							|  |  |  |             {{ presentation.slot.rooms|join:", " }}) | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  |         </li> | 
					
						
							|  |  |  |       {% endfor %} | 
					
						
							|  |  |  |     </ul> | 
					
						
							|  |  |  |   {% endcache %} | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% endblock %} |