{% extends 'website/layouts/base.html' %} {% load static %} {% block title %}{{ action }} Blog Post - CMS Dashboard{% endblock %} {% block content %}

{{ action }} Blog Post

{{ action }} Post Form

Please fill out all the fields below to create or update your blog post.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{% if field.name == 'is_featured' %}
{{ field }}
{% else %} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}