{% extends "base.html" %} {% load i18n bootstrap4 %} {% block title %}{% trans "Start" %} · {{ block.super }}{% endblock %} {% block content %} {% if request.user.is_authenticated %}
{% if request.user.is_superuser %}
You are logged in as admin
{% else %}
You are not listed as admin
{% endif %}
You are registered since {{ request.user.date_joined|timesince}}
{% else %}
Not logged in
{% endif %} {% endblock %}