add markup for listing proposals user has yet to review
This commit is contained in:
parent
db7f8fac5d
commit
f1b37c9833
1 changed files with 21 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue