- {% block sidebar %}
- {% include "includes/sidebar/sidebar.jinja" %}
- {% endblock %}
-
-
-
- {% if current_user.is_authenticated and not hwi_bridge %}
-
-
-
-
-
-
-
- {% include "components/price_bar.jinja" %}
-
-
-
-
-
- {% if specter.config.auth.method != "none" %}
-
-
-
- {% endif %}
-
-
-
-
-
- {% endif %}
-
-
-
- {% with messages = get_flashed_messages(with_categories=True) %}
- {% if messages %}
- {% for category, message in messages | unique %}
- {{ message | safe }}
- {% endfor %}
- {% endif %}
- {% endwith %}
- {% if error %}
- {{error | safe }}
- {% endif %}
-
-
-
-
- {% block main %}
- {% if error %}
-
{{ _("Something went wrong:") }}
{{error}}
- {% else %}
-
-
{{ _("Here should be some content but unfortunately, none here!") }}
-
- {% endif %}
- {% endblock %}
-
-
-
-