{% extends "admin/core/base.html" %} {% load static %} {% load foundation %} {% block title %}Submission Fields{% endblock %} {% block title-section %}Submission Fields{% endblock %} {% block title-sub %}Add fields to the submission platform{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Submission Fields
  • {% if field %}
  • {{ field.name }}
  • {% endif %} {% endblock %} {% block body %}

    Current Fields

      {% csrf_token %} {% for field in fields %}
    •   {{ field.name }}
    • {% endfor %}
    {% if field %}

    Edit {{ field.name }}

    {% else %}

    Add New Field

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