{% load i18n %} {% load static %}
{% block title %}Base{% endblock %}
{% block header %}Base{% endblock %}
{% block byline %}Byline{% endblock %}
{% if user.is_authenticated %} {% trans "Logged in as" %} {{ user.username }}
{% trans "Profile" %}
| {% if user.is_superuser %}
{% trans "Admin" %}
| {% endif %}
{% trans "Log out" %}
{% else %} {% trans "You are not logged in." %}
{% trans "Log in" %}
{% trans "or" %}
{% trans "register" %}
{% endif %}
{% block content %}{% endblock %}