{% extends "wiki/article.html" %} {% load wiki_tags i18n humanize %} {% block 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 %} {% if filter_query %} {% blocktrans with cnt|pluralize:_("article,articles") as articles_plur and cnt|pluralize:_("matches,match") as match_plur trimmed %} {{ cnt }} {{ articles_plur }} in this level {{ match_plur }} your search. {% endblocktrans %} {% else %} {% blocktrans with cnt|pluralize:_("article,articles") as articles_plur and cnt|pluralize:_("is,are") as articles_plur_verb trimmed %} There {{ articles_plur_verb }} {{ cnt }} {{ articles_plur }} in this level. {% endblocktrans %} {% endif %} {% endwith %}

{% if directory %} {% for urlpath in directory %} {% 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 }}
{% endif %} {% include "wiki/includes/pagination.html" %} {% endblock %}