{% extends "admin/core/base.html" %} {% load i18n %} {% load static %} {% load foundation %} {% block title %}{{ preprint.title|striptags }} - Authors{% endblock %} {% block title-section %}{{ request.repository.object_name }} Manager{% endblock %} {% block title-sub %}{{ request.repository.object_name }} #{{ preprint.pk }} - {{ preprint.title|safe }}{% endblock %} {% load files %} {% block breadcrumbs %}
  • Press Manager
  • {{ request.repository.object_name_plural }} Manager
  • {{ preprint.title|safe }}
  • Edit Authors
  • {% endblock %} {% block body %}

    {% if author %}Edit {{ author.account.full_name }}{% else %}Add Author{% endif %}

    < Back

    {% blocktrans %} You can search for an existing author or add them using the form below. If you complete the form with an email address of an existing user, that user will be added to the{% endblocktrans %} {{ request.repository.object }}.

    {% if not author %}
    {% csrf_token %}
    {% endif %}

    Complete Form

    {% include "elements/forms/errors.html" with form=form %} {% csrf_token %} {{ form|foundation }}
    {% endblock %}