{% 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_field %} {% block app_content %}
{% include "community/_community_moderation_nav.html" %}

{{ _('Wiki pages for %(community)s', community=community.display_name()) }}

{% if pages -%} {% for page in pages %} {% endfor %}
{{ _('Name') }} {{ _('Url') }}
{{ page.title }} {{ page.slug }} {% if page.can_edit(current_user, community) %} {% endif %}

{{ _('Add a link to the wiki in the community description.') }}

{% else -%}

{{ _('There are no wiki pages in this community.') }}

{% endif -%}
{% endblock %}