{% extends "admin_base.html" %} {% load static %} {% block content %}

{% if form.instance.pk %}Update{% else %}Create{% endif %} Magazine Issue

{% if form.instance.pk %}Update the details of your existing issue{% else %}Fill in the details to create a new magazine issue{% endif %}

{% csrf_token %} {% if form.non_field_errors %}

There were errors with your submission

{{ form.non_field_errors }}
{% endif %}
{% if form.name.errors %}

{{ form.name.errors.0 }}

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

{{ form.issue_number.errors.0 }}

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

{{ form.status.errors.0 }}

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

{{ form.publication_date.errors.0 }}

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

{{ form.description.errors.0 }}

{% endif %}
{% if form.instance.cover_image %} Change cover image {% else %} Upload a cover image {% endif %} PNG, JPG, GIF up to 5MB
{% if form.cover_image.errors %}

{{ form.cover_image.errors.0 }}

{% endif %} {% if form.instance.cover_image %}
Current cover
Current Cover
{% endif %}

Tips

  • • Status "Published" or "Scheduled" requires a publication date
  • • Cover images improve visibility and engagement
  • • Detailed descriptions help readers understand the issue content
Cancel
{% endblock %} {% block extra_js %} {% endblock %}