symposion_app/pinaxcon/templates/symposion/reviews/review_admin.html
Christopher Neugebauer 09725bede0 Modifications to review_admin.html (#62)
* 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.
2016-08-15 14:04:55 +10:00

70 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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>
&minus;1
</th>
<th>
&minus;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 }} &lt;{{ reviewer.email }}&gt;
</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 %}