{% extends 'wiki/base.html' %} {% load static i18n wiki_tags %} {% block title %}{% trans "Mapa do Site" %} - {% trans "Wiki" %}{% endblock %} {% block wiki_content %}
{% if pages_by_type %} {% for content_type, pages in pages_by_type.items %}

{{ content_type }}

{{ pages|length }} {% trans "página(s)" %}
{% for page in pages %}
{{ page.translations.first.title }}
{% if page.translations.first.subtitle %}
{{ page.translations.first.subtitle }}
{% endif %} {% if page.translations.first.summary %}

{{ page.translations.first.summary|striptags|truncatewords:15 }}

{% endif %}
{% if page.is_menu_item %} {% trans "Menu" %} {% endif %} {% if page.order %} #{{ page.order }} {% endif %} {% if page.parent_page %} {% trans "Subpágina" %} {% endif %}
{% endfor %}
{% endfor %} {% else %}

{% trans "Nenhuma página encontrada" %}

{% trans "O mapa do site estará disponível quando páginas forem criadas." %}

{% trans "Voltar ao Início" %}
{% endif %}
{% endblock %}