{% import "Webmaster/macros/master.html" as m with context %} {% import "Webmaster/macros/forms.html" as f with context %} {% include "Webmaster/Package/Publisher/Admin/_include.html" %} {% if types %}

Write New {{ selected_type.name | default('', true) }} Post
{% endif %} {% if posts | length %}
{% if not selected_type %} {% endif %} {% for post in posts %} {% if not selected_type %} {% endif %} {% endfor %}
TypeTitle Author Categories Date
{{ post.type.name }} {{ post.title }} {% if not post.is_published %} - {{ post.status }} {% endif %} {{ post.author.name }} {% for cat in post.categories %}{{ cat.name}} - {% endfor %} {% if post.is_published %}
{{ post.published_at }}
Published
{% else %}
{{ post.updated_at }}
Last modified
{% endif %}
{{ master.pagination(posts, **query_vars) }} {% endif %}