{% extends 'admin_dash/base.html' %} {% load static %} {% load humanize %} {% block content %}
{% for field in form %} {% for error in field.errors %} {% endfor %} {% endfor%} {% for msg in messages %} {% endfor%}

Drafted Blogs

{% for blog in the_blogs %} {% if blog.status == 'Drafted'%} {% endif %} {% endfor %}
{{blog.title}}
{{blog.date_created}}
edit blog delete blog

Published Blogs

{% for blog in the_blogs %} {% if blog.status == 'Published'%}
User Image
{{blog.title}}

{{blog.date_published|naturalday}}

edit blog
{{blog.views}} Views
{{blog.author.all.count}} author{{blog.author.all.count|pluralize:'s'}}
{% endif %} {% endfor %}

Add New Blog

{% csrf_token %}
{% endblock content %}