{% extends "admin/base.html" %} {% block admin_content %}
Votes
Recent Votes
{% for vote in votes %} {% endfor %}
ID Date Type User Chosen Model Rejected Model Text
{{ vote.id }} {{ vote.vote_date.strftime('%Y-%m-%d %H:%M') }} {{ vote.model_type }} {% if vote.user %} {{ vote.user.username }} {% else %} Anonymous {% endif %} {{ vote.chosen.name }} {{ vote.rejected.name }}
{{ vote.text }}
{% if pagination.pages > 1 %} {% endif %}
{% endblock %}