symposion_app/symposion/templates/reviews/_review_table.html

38 lines
1.3 KiB
HTML
Raw Normal View History

2012-08-14 07:49:57 +00:00
{% load i18n %}
<table class="table table-striped table-bordered table-reviews">
<thead>
<th>#</th>
<th>{% trans "Speaker / Title" %}</th>
<th>{% trans "Category" %}</th>
<th><i class="icon-comment-alt"></i></th>
<th>{% trans "+1" %}</th>
<th>{% trans "+0" %}</th>
<th>{% trans "-0" %}</th>
<th>{% trans "-1" %}</th>
2012-10-03 22:41:16 +00:00
<th><a href="#" class="tip" title="{% trans "Your Rating" %}"><i class="icon-user"></i></a></th>
2012-08-14 07:49:57 +00:00
</thead>
<tbody>
{% for proposal in proposals %}
2012-10-03 22:41:16 +00:00
<tr class="{{ proposal.user_vote_css }}">
2012-08-14 07:49:57 +00:00
<td>{{ proposal.number }}</td>
<td>
<a href="{% url review_detail proposal.pk %}">
<small><strong>{{ proposal.speaker }}</strong></small>
<br />
{{ proposal.title }}
</a>
</td>
<td>{{ proposal.track }}</td>
<td>{{ proposal.comment_count }}</td>
<td>{{ proposal.plus_one }}</td>
<td>{{ proposal.plus_zero }}</td>
<td>{{ proposal.minus_zero }}</td>
<td>{{ proposal.minus_one }}</td>
2012-10-03 22:41:16 +00:00
<td>{{ proposal.user_vote|default:"" }}</td>
2012-08-14 07:49:57 +00:00
</tr>
{% endfor %}
</tbody>
</table>