{% load i18n static django_bootstrap5 %} {% get_current_language as LANGUAGE_CODE %}
{% block title %}{% translate 'Study registration' %}{% endblock %}
{% if BOOTSTRAP_THEME_COLORS %}
{% endif %}
{% translate 'Study registration' %}
{% translate 'My Studies' %}
{% if perms.budgets.approve %}
{% translate 'Budgets' %}
{% endif %} {% if perms.deployments.approve %}
{% translate 'Deployments' %}
{% endif %}
{% translate 'About' %}
{% translate 'Contact' %}
{% translate 'Register Study' %}
{% if request.user.is_authenticated %}
{% translate 'Logout' %}
{% else %}
{% translate 'Login' %}
{% endif %}
{% if study %}
{% block breadcrumbs %}
{% translate 'Studies' %}
{{ study }}
{% endblock %}
{% endif %}
{% for message in messages %}
{{ message }}
{% endfor %} {% block content %}{% endblock %}
{% block extra_scripts %}{% endblock %}