{% extends 'admin_base.html' %} {% load custom_filters %} {% load static %} {% block content %}

{% if form.instance.pk %}Edit{% else %}Create{% endif %} Author Profile

Complete the information below to {% if form.instance.pk %}update{% else %}create{% endif %} an author profile

{% csrf_token %} {% if form.errors %}

There were errors with your submission

    {% for field in form %} {% for error in field.errors %}
  • {{ error }}
  • {% endfor %} {% endfor %} {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.name }}
{{ form.status }}

PNG, JPG, GIF up to 1MB

Author preview
{{ form.description }}
{{ form.affilation }}
{{ form.phone }}
{{ form.email }}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endblock %}