{% extends "admin/base.html" %} {% block content %}

{{ _('Contents') }}

{{ _('New content') }} {% for content in pages %} {% endfor %}
{{ _('Title') }} {{ _('Date') }} {{ _('Type') }} {{ _('Status') }} {{ _('Category') }} {{ _('Author') }}
{{ content.title }} {{ content.published | date }} {{ content.content_type | title}} {% if content.draft %} {{ _('Draft') }} {% else %} {{ _('Published') }} {% endif %} {{ content.category if content.category != None }} {{ content.author }} {{ _('Edit') }}
{% if content.draft %}
{% endif %}
{{ pagination.links | safe }}
{% endblock %}