{% extends base_template|default:"studies/base.html" %} {% load static i18n bootstrap4 %} {% block title %} {% if object %} {% trans "Edit" %} {% else %} {% trans "Create new study" %} {% endif %} · {{ block.super }} {% endblock %} {% block content %}
{% for error in form.non_field_errors %} {% endfor %} {% csrf_token %} {% bootstrap_field form.name %} {% bootstrap_field form.contact_person %} {% bootstrap_field form.principal_investigator %} {% bootstrap_field form.affiliated_scientists %} {% bootstrap_field form.affiliated_research_assistants %} {% bootstrap_field form.description %} {% bootstrap_field form.keywords %} {% bootstrap_field form.data_sensitivity %} {% include "file_field.html" with field=form.consent %} {% bootstrap_field form.min_subject_count %}
{% if not readonly %} {% endif %}
{% endblock %}