{% import "Juice/macros/forms.html" as forms with context %} {% import "Juice/macros/widget.html" as widget with context %} {% include "Juice/Plugin/Publisher/Admin/_include.html" %} {% if types %}

New {{ selected_type.name | default('', true) }} Post
{% endif %} {% if posts %} {% call widget.panel("%s Posts" % (selected_type.name if selected_type else " All") , type="table") %} {% if not selected_type %} {% endif %} {% for post in posts %} {% if not selected_type %} {% endif %} {% endfor %}
Title Date
{{ post.title }} {% if not post.is_published %} - {{ post.status }} {% endif %} {% if post.is_published %}
Published
{{ post.published_at }}
{% else %}
Last modified
{{ post.updated_at }}
{% endif %}
{% endcall %} {{ widget.pagination(posts, **query_vars) }} {% endif %}