 09725bede0
			
		
	
	
		09725bede0
		
	
	
	
	
		
			
			* Modifications to review_admin.html * Adds “submit & jump to random proposal” button * If user has a speaker profile, display their speaker profile name alongside their comments instead of their user name.
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "symposion/reviews/base.html" %}
 | ||
| 
 | ||
| {% block body %}
 | ||
|     <h1>Reviewers – {{ section_slug }}</h1>
 | ||
| 
 | ||
|     <table class="table table-striped">
 | ||
|         <tr>
 | ||
|             <th>
 | ||
|                 Reviewer
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 Proposals<br/>Reviewed
 | ||
|             </td>
 | ||
|             <th>
 | ||
|                 Comments
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 Avg
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 +2
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 +1
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 −1
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 −2
 | ||
|             </th>
 | ||
|             <th>
 | ||
|                 Abstain
 | ||
|             </th>
 | ||
|         </tr>
 | ||
|         {% for reviewer in reviewers %}
 | ||
|         <tr>
 | ||
|             <td>
 | ||
|                 <a href="{% url "review_list_user" section_slug reviewer.pk %}">
 | ||
|                     {{ reviewer.get_full_name }} <{{ reviewer.email }}>
 | ||
|                 </a>
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.total_votes }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.comment_count }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.average }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.plus_two }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.plus_one }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.minus_one }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.minus_two }}
 | ||
|             </td>
 | ||
|             <td>
 | ||
|                 {{ reviewer.abstain }}
 | ||
|             </td>
 | ||
|         </tr>
 | ||
|         {% endfor %}
 | ||
|     </table>
 | ||
| {% endblock %}
 |