{% extends "admin/core/base.html" %} {% load foundation %} {% block title %}Review Forms{% endblock title %} {% block title-section %}Review Forms{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Review Forms
  • {% endblock %} {% block body %}

    Journal's Forms

      {% for form_obj in form_list %}
    • {{ form_obj.name }} {% if default_form == form_obj.pk %} (Default){% endif %}

      Deleting form #{{ form_obj.pk }}: "{{ form_obj.name }}"

      Deleting this Review Form won't delete any active or past reviews using it. Instead, the form will no longer be available for selection on any future reviews.

      Proceed?

      {% csrf_token %}
    • {% endfor %}

    Add New Form

    {% csrf_token %} {{ form|foundation }}
    {% endblock body %} {% block js %} {% include "elements/datatables.html" with target="#files" %} {% endblock js %}