{% 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
  • {{ edit_form.name }}
  • {% endblock %} {% block body %}

    Form's Elements

    Add Element
    {% csrf_token %}
      {% for element in edit_form.elements.all %}
    •   {{ element.name }}
    • {% endfor %}

    Edit Form Detail

     Preview
    {% csrf_token %} {{ form|foundation }}
    {% include "elements/review/element_form.html" %} {% endblock body %} {% block js %} {% if modal %} {% include "admin/elements/open_modal.html" with target=modal %} {% else %} {% url 'order_review_elements' edit_form.pk as sort_url %} {% include "admin/elements/sortable.html" with sort_url=sort_url %} {% endif %} {% endblock %}