{% extends "wiki/base.html" %} {% set counter = _('Found {0} documents.')|f(count) %} {% if category %} {% set title = category %} {% elif tag %} {% set title = _('Articles tagged: {tag}')|f(tag=tag) %} {% elif is_templates %} {% set title = _('All templates') %} {% set counter = _('Found {0} templates.')|f(count) %} {% elif errors %} {% set title = _('Documents with errors') %} {% elif toplevel %} {% set title = _('Top level documents') %} {% elif noparent %} {% set title = _('Documents with no parent') %} {% else %} {% set title = _('All documents') %} {% endif %} {% block title %}{{ page_title(title) }}{% endblock %} {% set crumbs = [(None, title)] %} {% block extrahead %} {% if category %} {% elif tag %} {% else %} {% if (request.locale != 'en-US'): %} {# TODO: Someday, en-US won't be special in l10n. #} {% endif %} {% endif %} {% endblock %} {% block content %}
{{ counter }}
{{ _('There are no articles.') }}
{% endif %}