{% extends "orga/base.html" %} {% load i18n %} {% load compress %} {% load static %} {% block title %}{% trans "Pages" %}{% endblock %} {% block content %}

{% trans "Pages" %}

{% if pages|length == 0 %}

{% blocktrans trimmed %} You haven't created any pages yet. {% endblocktrans %}

{% trans "Create a new page" %}
{% else %}

{% trans "Create a new page" %}

{% for p in pages %} {% endfor %}
{% trans "Page title" %}
{{ p.title }}
{% include "orga/pagination.html" %} {% endif %} {% endblock %}