 4ef9664620
			
		
	
	
		4ef9664620
		
	
	
	
	
		
			
			* Change review templates to reflect LCA voting scores * Change review templates to reflect LCA voting scores
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "symposion/reviews/base.html" %}
 | |
| 
 | |
| {% block body %}
 | |
|     <h1>Reviewers</h1>
 | |
| 
 | |
|     <table class="table table-striped">
 | |
|         <tr>
 | |
|             <th>
 | |
|                 Reviewer
 | |
|             </th>
 | |
|             <th>
 | |
|                 Proposals<br/>Reviewed
 | |
|             </td>
 | |
|             <th>
 | |
|                 Comments
 | |
|             </th>
 | |
|             <th>
 | |
|                 +2
 | |
|             </th>
 | |
|             <th>
 | |
|                 +1
 | |
|             </th>
 | |
|             <th>
 | |
|                 −1
 | |
|             </th>
 | |
|             <th>
 | |
|                 −2
 | |
|             </th>
 | |
|         </tr>
 | |
|         {% for reviewer in reviewers %}
 | |
|         <tr>
 | |
|             <td>
 | |
|                 <a href="{% url "review_list_user" section_slug reviewer.pk %}">{{ reviewer.get_full_name }}</a>
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.total_votes }}
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.comment_count }}
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.plus_two }}
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.plus_one }}
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.minus_one }}
 | |
|             </td>
 | |
|             <td>
 | |
|                 {{ reviewer.minus_two }}
 | |
|             </td>
 | |
|         </tr>
 | |
|         {% endfor %}
 | |
|     </table>
 | |
| {% endblock %}
 |