| 
									
										
										
										
											2012-08-31 01:50:00 -04:00
										 |  |  | {% extends "site_base.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% load i18n %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head_title %}Presentation Listing{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-19 21:17:36 -04:00
										 |  |  | {% block extra_head %} | 
					
						
							|  |  |  |     <style> | 
					
						
							|  |  |  |         .presentation { | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         .presentation h3 { | 
					
						
							|  |  |  |             line-height: 1.1em; | 
					
						
							|  |  |  |             font-weight: bold; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         .presentation h4 { | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         .presentation p { | 
					
						
							| 
									
										
										
										
											2012-09-19 22:19:45 -04:00
										 |  |  |             margin-bottom: 0.5em; | 
					
						
							| 
									
										
										
										
											2012-09-19 21:17:36 -04:00
										 |  |  |             line-height: 1.2em; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     </style> | 
					
						
							|  |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-31 01:50:00 -04:00
										 |  |  | {% block body %} | 
					
						
							| 
									
										
										
										
											2012-09-19 22:06:15 -04:00
										 |  |  |     <h1>Accepted {{ schedule.section.name }}</h1> | 
					
						
							| 
									
										
										
										
											2012-08-31 01:50:00 -04:00
										 |  |  |     {% for presentation in presentations %} | 
					
						
							|  |  |  |         <div class="row"> | 
					
						
							| 
									
										
										
										
											2012-09-19 21:17:36 -04:00
										 |  |  |             <div class="span8 presentation well"> | 
					
						
							| 
									
										
										
										
											2012-09-20 22:54:17 -04:00
										 |  |  |                 <h3><a href="{% url schedule_presentation_detail presentation.pk %}">{{ presentation.title }}</a></h3> | 
					
						
							| 
									
										
										
										
											2012-08-31 01:50:00 -04:00
										 |  |  |                 <h4>{{ presentation.speaker }} in {{ presentation.proposal.track }}</h4> | 
					
						
							| 
									
										
										
										
											2012-09-19 21:17:36 -04:00
										 |  |  |                 {{ presentation.description }} | 
					
						
							| 
									
										
										
										
											2012-09-19 22:19:45 -04:00
										 |  |  |                 {% if presentation.slot %} | 
					
						
							|  |  |  |                     <h4> | 
					
						
							|  |  |  |                         {{ presentation.slot.day.date|date:"l" }} | 
					
						
							|  |  |  |                         {{ presentation.slot.start}}–{{ presentation.slot.end }} | 
					
						
							|  |  |  |                         in | 
					
						
							|  |  |  |                         {{ presentation.slot.rooms|join:", " }} | 
					
						
							|  |  |  |                     </h4> | 
					
						
							|  |  |  |                 {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-31 01:50:00 -04:00
										 |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     {% endfor %} | 
					
						
							|  |  |  | {% endblock %} |