<liclass="active"><ahref="#proposal-detail"data-toggle="tab">{% trans "Proposal Details" %}</a></li>
<li><ahref="#proposal-reviews"data-toggle="tab">{% trans "Reviews" %} <spanclass="badge">{{ reviews|length }}</span></a></li>
<li><ahref="#proposal-feedback"data-toggle="tab">{% trans "Speaker Feedback" %} <spanclass="badge">{{ proposal.messages.all|length }}</span></a></li>
</ul>
<divclass="tab-content">
<divclass="tab-pane active"id="proposal-detail">
{% include "proposals/_proposal_fields.html" %}
</div>
<divclass="tab-pane"id="proposal-reviews">
<h4>{% trans "Current Results" %}</h4>
<tableclass="table table-striped">
<thead>
<th>+1 votes</th>
<th>+0 votes</th>
<th>-0 votes</th>
<th>-1 votes</th>
<th>{% trans "Total Responses" %}
</thead>
<tbody>
<tr>
<td>{{ proposal.plus_one }}</td>
<td>{{ proposal.plus_zero }}</td>
<td>{{ proposal.minus_zero }}</td>
<td>{{ proposal.minus_one }}</td>
<td>{{ proposal.total_votes }}</td>
</tr>
</tbody>
</table>
<hr/>
{% if review_form %}
<formmethod="POST"action=""class="review-form">
<legend>{% trans "Submit Review" %}</legend>
<p>Enter your vote and any comment to go along with it. You can revise your vote or comment multiple times with an existing vote (your previously recorded score will be replaced during calculations). <b>Your vote and comments are not public and will only be viewable by other reviewers.</b></p>