{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% set active_child = 'admin_content_spam' %} {% block app_content %}

{{ _('Most downvoted posts in the last 3 days') }}

{% for post in posts.items %} {% include 'post/_post_teaser.html' %} {% endfor %}
{% if post_replies %}

Downvoted comments

{% for post_reply in post_replies.items %} {% with teaser=True, disable_voting=True, no_collapse=True %} {% include 'post/_post_reply_teaser.html' %} {% endwith %}
{% endfor %}
{% else %}

{{ _('No comments yet.') }}

{% endif %}

{% include 'admin/_nav.html' %}

{% endblock %}