{% 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 study{% endblock page_header %} {% block page_description %}{% endblock page_description %} {% block title %}{{ block.super }} - Edit subject information{% endblock %} {% block breadcrumb %} {% include "study/breadcrumb.html" %} {% endblock breadcrumb %} {% block maincontent %} {% block content %}

Go back (discard changes)

{% csrf_token %}

Study

{% for field in study_form %}
{% if field.label == 'Study Privacy Note' %}
{{ field|add_class:'form-control' }}
{% if privacy_notice %} {% endif %}
{% else %}
{{ field|add_class:'form-control' }}
{% endif %} {% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}

Notifications

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

ETL

{% for etl_entry in etl_entries %} {% endfor %}
Action Type File File Type Run at Worker Edit Run manually
{{ etl_entry.type }} {{ etl_entry.file }} {{ etl_entry.filetype }} {{ etl_entry.run_at }} {{ etl_entry.worker }} EDIT {% if etl_entry.available %} Run {% else %} Unavailable {% endif %}

Visible columns in subject list

{% for entry in visible_column_lists %} {% endfor %}
List Type Edit
{{ entry.type }} EDIT
{% include 'includes/custom_study_subject_field_box.html' with study=study fields=study.customstudysubjectfield_set.all %}

Available subject study data

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

RedCap fields to check for inconsistencies

{% for field in redcap_columns_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 %}