{% extends "studies/study_base.html" %} {% load i18n static django_bootstrap5 utils %} {% block title %} {% if study %} {% translate "Update" %} {% else %} {% translate "Create new study" %} {% endif %} · {{ block.super }} {% endblock %} {% block breadcrumbs %} {{ block.super }} {% if study %} {% else %} {% endif %} {% endblock %} {% block content %}
{% icon 'circle fa-stack-2x' 'regular' %} {% icon 'info fa-stack-1x' %}

{% translate 'Please create a profile for your study so other people can find all relevant information, even when you are no longer available.' %}

{% translate 'This first step is about general information. Afterwards you can provide additional information, e.g. on data sets or publications. All fields can still be changed later.' %}

{% icon 'circle fa-stack-2x' 'regular' %} {% icon 'folder-tree fa-stack-1x' %}
{% if object.storage_location %}

{% translate 'Your study folder is available at' %} {% smb_url_or_unc object.storage_location %}

{% else %}

{% translate 'A study folder is automatically created when you register a study.' %}

{% endif %}

{% translate "At the end of data aquisition, the study folder should contain a usable version of the acquired data, i.e. the data is well structured, basic cleaning routines have been applied (e.g. incomplete trials removed, ID errors corrected), but no analysis steps have been conducted." %}

{% include 'form_errors.html' with form=form %} {% csrf_token %} {% bootstrap_field form.title %} {% if form.short_title %} {% bootstrap_field form.short_title %} {% endif %} {% bootstrap_field form.aliases %} {% bootstrap_field form.end %} {% bootstrap_field form.department %} {% bootstrap_field form.project %} {% bootstrap_field form.affiliated_scientists %} {% bootstrap_field form.contact_person %} {% bootstrap_field form.owners %} {% bootstrap_field form.keywords %} {% bootstrap_field form.ethics_board %}

{% translate 'Links' %}

{{ formset.management_form }} {% for linkform in formset %}
{{ linkform.id }} {% bootstrap_field linkform.type wrapper_class="col-3" show_label=False %} {% bootstrap_field linkform.url wrapper_class="col" show_label=False %}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% bootstrap_field form.description %}
{% if study %} {% translate 'Cancel' %} {% else %} {% translate 'Cancel' %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}