{% 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 %}
{% endif %} {% if posts %} {% call widget.panel("%s Posts" % (selected_type.name if selected_type else " All") , type="table") %}Type | {% endif %}Title | Author | Categories | Date | {% for post in posts %} |
---|---|---|---|---|---|
{{ post.type.name }} | {% endif %}{{ 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 %}
Published
{{ post.published_at }}
{% else %}
Last modified
{{ post.updated_at }}
{% endif %}
|