{% extends "_base.html" %} {% load static %} {% load filters %} {% block styles %} {{ block.super }} {% include "includes/datepicker.css.html" %} {% include "includes/datetimepicker.css.html" %} {% endblock styles %} {% block ui_active_tab %}'study_conf'{% endblock ui_active_tab %} {% block page_header %}Edit {{ type }}{% endblock page_header %} {% block page_description %}{% endblock page_description %} {% block title %}{{ block.super }} - Edit visible columns in subject list{% endblock %} {% block breadcrumb %} {% include "study/breadcrumb.html" %} {% endblock breadcrumb %} {% block maincontent %} {% block content %}

Go back (discard changes)

{% csrf_token %}
{% for field in list_form %}
{{ field|add_class:'form-control' }}
{% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}

Subject columns

{% for field in subject_columns_form %}
{{ field|add_class:'form-control' }}
{% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}

Study subject columns

{% for field in study_subject_form %}
{{ field|add_class:'form-control' }}
{% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}
{% endblock %} {% endblock maincontent %} {% block scripts %} {{ block.super }} {% include "includes/datepicker.js.html" %} {% include "includes/datetimepicker.js.html" %} {% endblock scripts %}