{% if user.is_superuser and support_status.has_support and not support_status.in_limits %}
{% trans 'Your Weblate is exceeding service limits. Please upgrade the subscription.' as msg %}
{% show_message 'warning' msg %}
{% endif %}
{% if user.is_authenticated and not user.profile.has_2fa and user.group_enforces_2fa %}
{% include "snippets/enforced_2fa.html" %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% show_message message.tags message %}
{% endfor %}
{% endif %}
{% if menu_items %}
{% include 'snippets/menu.html' %}
{% endif %}
{% block content %}{% endblock %}
{% include 'keyboard-shortcuts.html' %}
{% include 'footer.html' %}