{% extends 'website/layouts/base.html' %} {% load static %} {% block title %}{{ action }} Blog Post - CMS Dashboard{% endblock %} {% block content %} {{ action }} Blog Post Home / Blog / {{ action }} {{ 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 %} {{ field.label }} {% if field.field.required %}*{% endif %} {% if field.name == 'is_featured' %} {{ field }} {{ field.help_text }} {% else %} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %} {% endfor %} Cancel Save Blog Post {% endblock %} {% block extra_js %} {% endblock %}
Please fill out all the fields below to create or update your blog post.