{% extends "cadmin/base_admin.html" %} {% block title %} Add New Post - {{ block.super }} {% endblock %} {% block main %}

» All Posts » Add Post

Add Post

{% if messages %} {% endif %}

{{ form.non_field_errors }}

{% csrf_token %} {{ form.media }} {# Show authors only if logged in user is a superuser #} {% if request.user.is_superuser %} {% endif %}
{{ form.title.label_tag }} {{ form.title.errors }} {{ form.title }}
{{ form.content.label_tag }} {{ form.content.errors }} {{ form.content }}
{{ form.category.label_tag }} {{ form.category.errors }} {{ form.category }}
{{ form.tags.label_tag }} {{ form.tags.errors }} {{ form.tags }}
{{ form.author.label_tag }} {{ form.author.errors }} {{ form.author }}
{% endblock %}