Files
snikket-web-portal/snikket_web/templates/app.html
2021-01-28 18:53:03 +01:00

10 lines
352 B
HTML

{% extends "unauth.html" %}
{% from "library.j2" import standard_button %}
{% block head_lead %}
<title>{% trans %}Snikket Web Portal{% endtrans %}</title>
{% endblock %}
{% block topbar_right %}
{{- super() -}}
{% call standard_button("logout", url_for("user.logout"), class="tertiary") %}{% trans %}Log out{% endtrans %}{% endcall %}
{%- endblock %}