{% extends base_template|default:"studies/base.html" %} {% load static i18n bootstrap4 %} {% block title %} {% if object %} {% translate "Edit" %} {% else %} {% translate "Create new study" %} {% endif %} · {{ block.super }} {% endblock %} {% block content %}
{% include 'utils/form_errors.html' with form=form %} {% 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 %} {% bootstrap_field form.consent %} {% bootstrap_field form.min_subject_count %} {% if form.is_onetime_invitation %} {% bootstrap_field form.is_onetime_invitation %} {% endif %}
{% if not readonly %} {% endif %}
{% endblock %}