2015-10-16 17:53:02 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2018-06-30 03:28:03 +00:00
|
|
|
<table class="table table-striped table-reviews">
|
2015-10-16 17:53:02 +00:00
|
|
|
<thead>
|
|
|
|
<th>#</th>
|
|
|
|
<th>{% trans "Speaker / Title" %}</th>
|
2018-07-31 10:37:19 +00:00
|
|
|
<th class="toggle">Withdrawn?</th>
|
2017-11-12 02:07:55 +00:00
|
|
|
<th class="toggle">Audience</th>
|
|
|
|
<th class="toggle">Format</th>
|
2016-06-20 23:58:27 +00:00
|
|
|
<th>{% trans "Votes" %}</th>
|
2017-11-12 02:07:55 +00:00
|
|
|
<th class="toggle">{% trans "Score" %}</th>
|
|
|
|
<th class="votes">{% trans "+2" %}</th>
|
|
|
|
<th class="votes">{% trans "+1" %}</th>
|
|
|
|
<th class="votes">{% trans "-1" %}</th>
|
|
|
|
<th class="votes">{% trans "-2" %}</th>
|
2015-10-16 17:53:02 +00:00
|
|
|
<th><a href="#" class="tip" title="{% trans "Your Rating" %}"><i class="fa fa-user"></i></a></th>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{% for proposal in proposals %}
|
|
|
|
<tr class="{{ proposal.user_vote_css }}">
|
|
|
|
<td>{{ proposal.number }}</td>
|
|
|
|
<td>
|
|
|
|
<a href="{% url "review_detail" proposal.pk %}">
|
|
|
|
<small><strong>{{ proposal.speaker }}</strong></small>
|
|
|
|
<br />
|
|
|
|
{{ proposal.title }}
|
|
|
|
</a>
|
|
|
|
</td>
|
2018-07-31 12:54:30 +00:00
|
|
|
<td>
|
|
|
|
{% if proposal.cancelled %}
|
|
|
|
<p class="badge-danger">WITHDRAWN</p>
|
|
|
|
{% else %}
|
|
|
|
<p class="badge-success">Not withdrawn</p>
|
|
|
|
{% endif %}</td>
|
2017-11-12 02:07:55 +00:00
|
|
|
<td>{{ proposal.get_target_audience_display }}</td>
|
|
|
|
<td>{{ proposal.get_talk_format_display }}</td>
|
2016-06-20 23:58:27 +00:00
|
|
|
<td>{{ proposal.total_votes }}</td>
|
2016-06-18 03:13:31 +00:00
|
|
|
<td>{{ proposal.score }}</td>
|
2016-06-13 07:58:55 +00:00
|
|
|
<td>{{ proposal.plus_two }}</td>
|
2015-10-16 17:53:02 +00:00
|
|
|
<td>{{ proposal.plus_one }}</td>
|
|
|
|
<td>{{ proposal.minus_one }}</td>
|
2016-06-13 07:58:55 +00:00
|
|
|
<td>{{ proposal.minus_two }}</td>
|
2015-10-16 17:53:02 +00:00
|
|
|
<td>{{ proposal.user_vote|default:"" }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|