{% extends "directories/base.html" %} {% load pagination_tags %} {% load directory_tags %} {% load base_tags %} {% load search_tags %} {% load i18n %} {% block title %}{% firstof MODULE_DIRECTORIES_LABEL_PLURAL trans 'Directories' %} {% trans "List" %} {{ block.super }}{% endblock %} {% block meta_description %}{{ block.super }}{% endblock %} {% block meta_keywords %}{{ block.super }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% directory_nav request.user %}

{% firstof SITE_GLOBAL_SITEPRIMARYKEYWORDS SITE_GLOBAL_SITEDISPLAYNAME %} {% firstof MODULE_DIRECTORIES_LABEL_PLURAL trans 'Directories' %}

{% autopaginate directories 10 %} {% directory_search %} {{ paginator.count }} {% firstof MODULE_DIRECTORIES_LABEL_PLURAL trans 'Directories' %} {% trans "Found" %}
{% for directory in directories %} {% search_result directory %} {% empty %} {% if user.profile.is_superuser %}

{% trans "Add a new" %} {% firstof MODULE_DIRECTORIES_LABEL 'Directory' %}

{% endif %} {% endfor %}
{% paginate %}
{% endblock %}