add markup for listing proposals user has yet to review

This commit is contained in:
florapdx 2013-04-25 15:39:15 -07:00
parent db7f8fac5d
commit f1b37c9833

View file

@ -132,6 +132,7 @@
<h3>{% trans "Reviews" %}</h3>
</div>
{% user_reviews as user_reviews %}
{% user_not_reviewed as user_not_reviewed %}
<div class="dashboard-panel-content">
<h4>Review Sections</h4>
@ -162,6 +163,26 @@
{% endfor %}
</tbody>
</table>
<h4>Proposals you have yet to review</h4>
<table class="table table-condensed">
<thead>
<th>#</th>
<th>Speaker / Title</th>
</thead>
<tbody>
{% for proposal in user_not_reviewed %}
<tr>
<td>{{ proposal.number }}</td>
<td>
<b>{{ proposal.speaker }}</b>
<br />
{{ proposal.title }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% comment %}
<h4>My Assignments</h4>