{% extends "admin/layout.html" %} {% set active_menu_item = ['posts', 'overview'] %} {% block title %}{% trans "Manage Posts" %}{% endblock %} {% block contents %}
{% trans "ID" %} | {% trans "Title" %} | {% trans "Author" %} | {% trans "Tags" %} | {% trans "Comments" %} | {% trans "Date" %} |
---|---|---|---|---|---|
{{ post.post_id }} | {{ post.title|e }} | {{ post.author.display_name|e }} | {% for tag in post.tags %}{{ tag.name|e }}{% if not loop.last %}, {% endif %}{% endfor %} | {{ post.comments|count }} | {{ post.pub_date|datetimeformat|e }} |
{% trans "No posts." %} |