{% load i18n %} {% load markup %} {% if is_dev %} (DEV) {% endif %} {% block title %}{% endblock %} - Inhouse-Web
{% if messages %}
    {% for message in messages %} {{ message|markdown }} {% endfor %}
{% endif %}
{% if user.id %} {{ user.email }} ({{ user.username }}) | {% trans "Profile" %} | {% trans "Settings" %} | {% trans "Sign out" %} {% endif %}
{% block actions %}{% endblock %}

{% block page-title %}{% endblock %}

{% if form.errors %} {{ form.errors }} {% endif %} {% block content %}{% endblock %}