{% extends "base.html" %} {% load wagtailcore_tags static %} {% load wagtailimages_tags %} {% block content %}

{{ page.title }}

Download CSV

{% for e in entries %} {% image e fill-200x200 as thumb %} {% endfor %}
# Points Title Author
{{ forloop.counter }} {{e.total_points}} {{e.title}} {% for v in e.votes.all %} {% if v.comments %}

{{v.user}}: {{ v.comments }}

{% endif %} {% endfor %}
{{e.user.name}}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}