{% load i18n static django_bootstrap5 %} {% get_current_language as LANGUAGE_CODE %}
{% block title %}{{ TITLE }}{% endblock %}
{{ TITLE }}
{% for href, label in NAV %}
{{ label }}
{% endfor %}
{% if request.user.is_authenticated %}
{% translate 'Logout' %}
{% endif %}
{% for message in messages %}
{{ message }}
{% endfor %} {% block content %}{% endblock %}
{% block extra_scripts %}{% endblock %}