{% load i18n %} {% block title %}TITLE GOES HERE{% endblock %} - Teagarden
{% if not user.id %} {% trans "Sign in" %} {% endif %} {% if user.id %} {{ user.email }} ({{ user.username }}) | {% trans "Settings" %} | {% trans "Sign out" %} {% endif %}

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

{% if messages %}
    {% for message in messages %} {{ message }} {% endfor %}
{% endif %} {% block content %}{% endblock %}
{% include "footer.html" %}