{% if request.event and request.event.logo %}
{% elif request.event %}
{{ request.event.name }}
{% endif %}
{% if request.event and request.event.locales|length > 1 and not is_html_export %}
{% for l, name in request.event.named_locales %}
{{ name }}
{% endfor %}
{% if request.user.is_anonymous %}
• login
{% endif %}
{% endif %}
{% if request.event and request.user.is_authenticated and not is_html_export %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% endfor %}
{% endif %}
{% block content %}
{% endblock %}