{% extends "wiki/article.html" %} {% load wiki_tags i18n humanize %} {% block wiki_pagetitle %}{% trans "Listing articles in" %} {{ article.current_revision.title }}{% endblock %} {% block wiki_contents_tab %} {% url 'wiki:dir' urlpath.path as self_url %}
{% with paginator.object_list.count as cnt %} {% blocktrans with urlpath.path as path and cnt|pluralize:_("article,articles") as articles_plur and cnt|pluralize:_("is,are") as articles_plur_verb trimmed %} Browsing /{{ path }}. There {{ articles_plur_verb }} {{ cnt }} {{ articles_plur }} in this level. {% endblocktrans %} {% endwith %}
{% for urlpath in directory %} {% empty%} {% endfor %}
{% trans "Title" %} {% trans "Slug" %} {% trans "Last modified" %}
{{ urlpath.article.current_revision.title }} {% if urlpath.article.current_revision.deleted %} {% endif %} {% if urlpath.article.current_revision.locked %} {% endif %} {{ urlpath.slug }} {{ urlpath.article.current_revision.created|naturaltime }}
{% trans "There are no articles in this level" %}
{% include "wiki/includes/pagination.html" %} {% endblock %}