{% include "PublisherAdmin/_include.html" %} {% if types %}
{% endif %} {% if posts %} {% call widget.panel("%s Posts" % (selected_type.name if selected_type else " All") , type="table") %}Type | {% endif %}Title | Slug | Categories | Date | {% for post in posts %} |
---|---|---|---|---|---|
{{ post.type.name }} | {% endif %}{{ post.title }} {% if not post.is_published %} - {{ post.status }} {% endif %} | {{ post.slug }} | {% for cat in post.categories %}{{ cat.name}} - {% endfor %} |
{% if post.is_published %}
Published
{{ post.published_at }}
{% else %}
Last modified
{{ post.updated_at }}
{% endif %}
|