{% extends 'LayoutMain.html' %} {% load static %} {% block title %}Dashboard - Edit Post{% endblock %} {% block content %}
Edit Post: {{ post.title }} Back to List
{% csrf_token %} {{ form.media }} {% if form.errors %}
    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %} {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.title }}
{{ form.slug }} Slug is automatically generated from the title after saving.
{{ form.short_description }}
{{ form.meta_tags }}
{{ form.blog_body }}
{{ form.category }}
{{ form.status }}

{% if post.featured_image %}
Current Image: {{ post.title }}
{% endif %} {{ form.featured_image }}
{{ form.is_featured }}
Cancel
{% endblock %}