{% extends "studies/base.html" %} {% load i18n static auth django_bootstrap5 utils %} {% block title %}{% translate "Studies" %} · {{ block.super }}{% endblock %} {% block container_class %}container-lg{% endblock %} {% block content %}

{% translate 'Membership' %} {% for value, label in form.member.field.choices %} {% endfor %}

{{ form.status.label }} {% for value, label in form.status.field.choices %} {% endfor %}

{{ form.type.label }} {% for value, label in form.type.field.choices %} {% endfor %}
{% has_perm 'studies.change_study' user as can_add_study %} {% if can_add_study %}
{% translate "Create new study" %} {% if CASTELLUM_ENABLE_STUDY_EXPORT %} {% translate "Import study" %} {% endif %}
{% csrf_token %}
{% endif %} {% if form.cleaned_data.display == 'calendar' %}
{% else %} {% if is_paginated %} {% endif %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %} {% block extra_styles %} {% endblock %}