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

{{ _('People from %(instance)s', instance=instance.domain) }}

{% if people %} {% for person in people.items %} {% endfor %}
{{ _('Name') }} {{ _('About') }} {{ _('Posts') }} {{ _('Comments') }}
{{ render_username(person) }} {{ person.about_html | safe if person.about_html }} {{ person.post_count }} {{ person.post_reply_count }}
{% else %}

{{ _('No people to show') }}

{% endif %}
{% endblock %}