{% if form.cleaned_data.display == 'calendar' %}
{% else %}
{% for study in object_list %}
{{ study.name }}
{{ study.contact_person }}
{% for tag in study.tags.all %}
{{ tag }}
{% endfor %}
{% if study.status == study.FINISHED %}
{% translate 'Finished' %}
{% endif %}
{% has_perm 'studies.access_study' user study as can_access %}
{% if can_access and study.status == study.EXECUTION %}
{% has_perm 'recruitment.recruit' user study as can_recruit %}
{% if can_recruit %}
{% translate 'Recruitment' %}
{% endif %}
{% has_perm 'recruitment.conduct_study' user study as can_conduct %}
{% if can_conduct %}
{% translate 'Execution' %}
{% endif %}
{% endif %}
{% has_perm 'studies.view_study' user study as can_view_study %}
{% if can_view_study %}
{% translate 'Details' %}
{% endif %}