{% extends "cadmin/base_admin.html" %} {% block title %} All Posts - {{ block.super }} {% endblock %} {% block main %}

» All Post

Add Post »

{% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %}

Total Posts: {{ posts.paginator.count }}

{% for post in posts %} {% if forloop.first %} {% if request.user.is_superuser %} {% endif %} {% endif %} {% if request.user.is_superuser %} {% endif %} {% if forloop.last %}
Title CategoryAuthorDate Action
{{ post.title|truncatechars:50 }} {{ post.category }}{{ post.author }}{{ post.pub_date|date:"d M Y" }} Edit | Delete
{% endif %} {% empty %} No Posts {% endfor %}
{% if posts %} {% endif %} {% endblock %}