{% load static %}
{% block title %}Seitenname{% endblock %}
{% if user.is_superuser %}
Administration
Dashboard
Studentenansicht
{% elif user.is_staff %}
Administration
Dashboard
{% else %}
{{user.get_username}}'s Dashboard
{% endif %}
{% if user.is_authenticated %}
Abmelden
{% else %}
Anmelden
{% csrf_token %} {% if next %}
{% endif %}
Benutzername
Kennwort
Anmelden
{% endif %}
{% block content %} {% endblock %}