| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  | {% load i18n %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <table class="table table-striped table-bordered table-reviews"> | 
					
						
							|  |  |  |     <thead> | 
					
						
							|  |  |  |         <th>#</th> | 
					
						
							|  |  |  |         <th>{% trans "Speaker / Title" %}</th> | 
					
						
							| 
									
										
										
										
											2016-06-21 09:58:27 +10:00
										 |  |  |         <th>{% trans "Votes" %}</th> | 
					
						
							| 
									
										
										
										
											2016-06-18 13:13:31 +10:00
										 |  |  |         <th>{% trans "Score" %}</th> | 
					
						
							| 
									
										
										
										
											2016-06-13 17:58:55 +10:00
										 |  |  |         <th>{% trans "+2" %}</th> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |         <th>{% trans "+1" %}</th> | 
					
						
							|  |  |  |         <th>{% trans "-1" %}</th> | 
					
						
							| 
									
										
										
										
											2016-06-13 17:58:55 +10:00
										 |  |  |         <th>{% trans "-2" %}</th> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |         <th><a href="#" class="tip" title="{% trans "Your Rating" %}"><i class="fa fa-user"></i></a></th> | 
					
						
							|  |  |  |     </thead> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <tbody> | 
					
						
							|  |  |  |         {% for proposal in proposals %} | 
					
						
							|  |  |  |             <tr class="{{ proposal.user_vote_css }}"> | 
					
						
							|  |  |  |                 <td>{{ proposal.number }}</td> | 
					
						
							|  |  |  |                 <td> | 
					
						
							|  |  |  |                     <a href="{% url "review_detail" proposal.pk %}"> | 
					
						
							|  |  |  |                         <small><strong>{{ proposal.speaker }}</strong></small> | 
					
						
							|  |  |  |                         <br /> | 
					
						
							|  |  |  |                         {{ proposal.title }} | 
					
						
							|  |  |  |                     </a> | 
					
						
							|  |  |  |                 </td> | 
					
						
							| 
									
										
										
										
											2016-06-21 09:58:27 +10:00
										 |  |  |                 <td>{{ proposal.total_votes }}</td> | 
					
						
							| 
									
										
										
										
											2016-06-18 13:13:31 +10:00
										 |  |  |                 <td>{{ proposal.score }}</td> | 
					
						
							| 
									
										
										
										
											2016-06-13 17:58:55 +10:00
										 |  |  |                 <td>{{ proposal.plus_two }}</td> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |                 <td>{{ proposal.plus_one }}</td> | 
					
						
							|  |  |  |                 <td>{{ proposal.minus_one }}</td> | 
					
						
							| 
									
										
										
										
											2016-06-13 17:58:55 +10:00
										 |  |  |                 <td>{{ proposal.minus_two }}</td> | 
					
						
							| 
									
										
										
										
											2015-10-16 12:53:02 -05:00
										 |  |  |                 <td>{{ proposal.user_vote|default:"" }}</td> | 
					
						
							|  |  |  |             </tr> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							|  |  |  |     </tbody> | 
					
						
							|  |  |  | </table> |