{% for field in form %}
{% for error in field.errors %}
{% endfor %}
{% endfor%}
{% for msg in messages %}
{% endfor%}
{% for blog in the_blogs %}
{% if blog.status == 'Drafted'%}
Drafted Blogs
| {{blog.title}} {{blog.date_created}} |
edit blog | delete blog |
Published Blogs
{% for blog in the_blogs %}
{% if blog.status == 'Published'%}
{{blog.views}} Views
{{blog.author.all.count}} author{{blog.author.all.count|pluralize:'s'}}
{% endif %}
{% endfor %}
{{blog.author.all.count}} author{{blog.author.all.count|pluralize:'s'}}