{% import "WebPortfolio/macros/base.html" as m with context %} {% import "WebPortfolio/macros/forms.html" as f with context %} {% extends "WebPortfolio/Package/Cms/Admin/_layout.html" %} {% block admin_content %} {% if types %}
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 %}
{{ post.published_at }}
Published
{% else %}
{{ post.updated_at }}
Last modified
{% endif %}
|