{% extends 'backend/base.html'%} {% block content %} {% if post_page %}
+ New Post
{% if posts %} {% for post in posts %} {% endfor %} {% endif %}
# Post Title Author Date Modified Status Action
{{ forloop.counter }} {{ post.title}} {{ post.author}} {{post.updated_date.year}}/{{post.updated_date.month}}/{{post.updated_date.day}} {{post.status}} edit delete
{% elif post_page_by_author %}
+ New Post
{% if posts %} {% for post in posts %} {% endfor %} {% endif %}
# Post Title Date Modified Status Action
{{ forloop.counter }} {{ post.title}} {{post.updated_date.year}}/{{post.updated_date.month}}/{{post.updated_date.day}} {{post.status}} edit delete
{% elif new_post %}
{% csrf_token %}

Post Options:

Categories:
{% for category in categories %}
{% endfor %}
Tags:
{% for tag in tags %}
{% endfor %}
Featured Image
{% elif edit_post %}
{% csrf_token %}
{% if post.status == 'drafted' %} {% else %} {% endif %}

Post Options:

Categories:
{% for category in post_categories %}
{% endfor %} {% for category in other_categories %}
{% endfor %}
Tags:
{% for tag in post_tags %}
{% endfor %} {% for tag in other_tags %}
{% endfor %}
{{post.title}}
{% endif %} {% endblock %}