{% extends 'administration/base_admin.html' %} {% load mptt_tags i18n %} {% block title %}{% trans "Page manager" %}{% endblock %} {% block action_close %}admin.pages.cancel_form();{% endblock %} {% block content %}
{% trans "Add a new page" %}
 {% blocktrans count pages|length as nb_pages %}You currently have {{ nb_pages }} page on your website.{% plural %}You currently have {{ nb_pages }} pages on your website.{% endblocktrans %}

    {% recursetree pages %}
  1. {% if node.slug == "" %}
    {% else %}
    {% endif %}

    {{ node.title }}{% if node.draft %} - {% trans "Draft" %} : {% trans "Bring online" %}{% endif %}

    {% if node.slug != "" %} - {% else %} - {% endif %}

    URL : {% if node.slug %}{% if node.level != 0 %}..{% endif %}/{{ node.slug }}/{% else %}/{% endif %} {% trans "Page type" %} : {{ node.verbose_name_app }} {% if node.app_page_object.details %} - {{ node.app_page_object.details }} {% endif %}

    {% if not node.is_leaf_node %}
      {{ children }}
    {% endif %}
  2. {% endrecursetree %}

{% trans "Manage pages of your website" %}

Liste de page

{% trans "You website can have an unlimited number of page. This screen allow you to manage your pages. You can create a new one, but also edit and delete those already existing." %}

{% trans "Type of page" %}

{% trans "Each page of your website as a type (also call Page App) which allow you to display informations in the optimized way (ex: blog, pictures, ...)" %}

{% trans "Move a page" %}

Liste de page

{% trans "To move a page, click on the extreme right part and drag it to the wished position. The address (url) will automaticaly be edited and the structure of your site modified in real time (Be careful, changing a page address will unvalid existing link on this page, which will have to be manually edited.)" %}

{% endblock %}