{% extends "admin/list.html" %} {% block title %}{{ _('Contents') }}{% endblock %} {% block new %} {{ _('New content') }} {% endblock %} {% block table %} {{ _('Title') }} {{ _('Date') }} {{ _('Type') }} {{ _('Status') }} {{ _('Comments') }} {{ _('Author') }} {% for content in objects %} {{ content.title }} {{ content.published | date }} {{ content.content_type | title}} {% if content.draft %} {{ _('Draft') }} {% else %} {{ _('Published') }} {% endif %} {% if content.comments %} {{ content.comments | length }} {% endif %} {{ content.author }}
{% if content.draft %}
{% endif %} {% endfor %} {% endblock %}