{% extends "base.html" %} {% block title %} {{ _("Review Votes") }} {% endblock %} {% block link %} {{ package.title }} {% endblock %} {% block content %}
This section shows whether users tend vote in a way that agrees or disagrees with a package. Total reviews: {{ total_reviews }}.
Username | Balance | With Pkg | Against Pkg | No Vote |
---|---|---|---|---|
{{ info.username }} | {{ info.balance }} | {{ info.with_ }} ({{ info.perc_with }}%) | {{ info.against }} ({{ 100 - info.perc_with }}%) | {{ info.no_vote }} |
No votes |
{% if review.rating > 3 %} {% elif review.rating < 3 %} {% else %} {% endif %} {{ review.thread.title }} by {{ review.author.display_name }} | |
---|---|
{% for vote in review.votes %} {% if vote.is_positive %} {{ vote.user.username }} {% endif %} {% endfor %} | {% for vote in review.votes %} {% if not vote.is_positive %} {{ vote.user.username }} {% endif %} {% endfor %} |