{% 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' %} {% block app_content %}

{{ title }}

{% if post_replies %}

Posts

{% endif %}
{% for post in posts.items %} {% include 'post/_post_teaser.html' %} {% else %}

{{ _('No posts.') }}

{% endfor %}
{% if post_replies %}

Comments

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

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

{% endfor %}
{% endif %}

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

{% endblock %}