{% load static tailwind_tags version add_to_qs %}{% load i18n %} {% block title %}{{ site_title }}{% endblock %} {% tailwind_preload_css %} {% tailwind_css %}
Bugsink logo
{{ site_title }}
{% if not app_settings.SINGLE_TEAM %}
{% translate "Teams" %}
{% endif %}
{% translate "Projects" %}
{% if project %}
{% translate "Issues" %} ({{ project.name }})
{% endif %}
{% if app_settings.USE_ADMIN and user.is_staff %}
{% translate "Admin" %}
{% endif %} {% if user.is_superuser %}
{% translate "Users" %}
{% translate "Tokens" %}
{% endif %} {% if logged_in_user.is_anonymous %}
{% translate "Login" %}
{# I don't think this is actually ever shown in practice, because you must always be logged in #} {% else %}
{% translate "Preferences" %}
{% csrf_token %}
{% endif %}
{% for system_warning in system_warnings %}
{{ system_warning.message }}
{% if system_warning.ignore_url %}
{% csrf_token %}
{# the button adds some undesired padding; leaving it for now #} {% endif %}
{% endfor %} {% comment %} {# for use when we introduce a notification system #}
Foo bar baz
{# heroicon's x-circle #}
{% endcomment %}
{% block content %}{% endblock %}
{% block extra_js %}{% endblock %}