» All Post
{% if messages %} {% for message in messages %}{{ message }}
{% endfor %} {% endif %}Total Posts: {{ posts.paginator.count }}
{% for post in posts %} {% if forloop.first %}| Title | Category | {% if request.user.is_superuser %}Author | {% endif %}Date | Action |
|---|---|---|---|---|
| {{ post.title|truncatechars:50 }} | {{ post.category }} | {% if request.user.is_superuser %}{{ post.author }} | {% endif %}{{ post.pub_date|date:"d M Y" }} | Edit | Delete |