{% if title %} {{ title }} {% else %} Gerüchteküche {% endif %}
{% if current_user.is_authenticated %} Logout Übersicht {% else %} Finanzer {% endif %}
{% block content %} {% endblock %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% if form %} {% if form.username.errors %} {% for error in form.username.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.password %} {% if form.password.errors %} {% for error in form.password.errors %}
{{ error }}
{% endfor %} {% endif %} {% endif %} {% endif %} {% endwith %}
{% block bottombar %} {% endblock %}