{% extends 'LayoutMain.html' %} {% load static %} {% block title %}Dashboard - Edit Post{% endblock %} {% block content %} Home Posts Edit Post 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.label }} {{ form.title }} {{ form.slug.label }} {{ form.slug }} Slug is automatically generated from the title after saving. {{ form.short_description.label }} {{ form.short_description }} Meta Tags (Comma Separated) {{ form.meta_tags }} {{ form.blog_body.label }} {{ form.blog_body }} {{ form.category.label }} {{ form.category }} {{ form.status.label }} {{ form.status }} {{ form.featured_image.label }} {% if post.featured_image %} Current Image: {% endif %} {{ form.featured_image }} {{ form.is_featured }} {{ form.is_featured.label }} Update Post Cancel {% endblock %}