{% extends "admin_base.html" %} {% load static %} {% block title %}{% if form.instance.pk %}Edit{% else %}Create{% endif %} Blog - Admin Panel{% endblock %} {% block content %}

{% if form.instance.pk %}Edit{% else %}Create{% endif %} Blog Post

{% if form.instance.pk %} {{ form.instance.get_status_display }} {% endif %}
{% csrf_token %}
{% if form.title.errors %}

{{ form.title.errors.0 }}

{% endif %}
{{ form.content }}
{% if form.content.errors %}

{{ form.content.errors.0 }}

{% endif %}

PNG, JPG, GIF up to 1MB

Blog preview image
{% if form.status.errors %}

{{ form.status.errors.0 }}

{% endif %}
{% if form.category.errors %}

{{ form.category.errors.0 }}

{% endif %}
{% if form.topic.errors %}

{{ form.topic.errors.0 }}

{% endif %}
Loading...
{{ form.authors }}
{% if form.authors.errors %}

{{ form.authors.errors.0 }}

{% endif %}
Loading...
{{ form.related_topics }}
{% if form.related_topics.errors %}

{{ form.related_topics.errors.0 }}

{% endif %}
{% if form.published_time.errors %}

{{ form.published_time.errors.0 }}

{% endif %}
{% if form.feature_this.errors %}

{{ form.feature_this.errors.0 }}

{% endif %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}