{% extends "blogango/admin/base.html" %} {% block title %}{{ _("Manage Entries") }}{% endblock %} {% block contents %}

{{ _("Manage Entries") }}

{% for entry in entries %} {% endfor %}
Title Author Categories Comments Date
{% if not entry.is_published %} {{ entry.title }} {% else %} {{ entry.title }} {% endif %} [edit] {% if entry.is_published %} [show] {% else %} [preview] {% endif %} {{ entry.created_by }} {% for tag in entry.tags.all %} {{ tag.name }} {% endfor %} {{ entry.get_num_comments }} {% ifequal entry.created_on.year 9999 %} Not published yet. {% else %} {{ entry.created_on }} {% endifequal %}
{% endblock %}