{% extends "admin/base.html" %} {% load i18n static %} {% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Account site') }}{% endblock %} {% block branding %}

{{ site_header|default:_('Account site') }}

{% endblock %} {% block nav-global %}{% endblock %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block usertools %}
{% if user.is_authenticated %} {% block welcome-msg %} {% translate 'Welcome,' %} {% firstof user.get_short_name user.get_username %}. {% endblock %} {% endif %} {% block userlinks %} {% if site_url %} {% translate 'View site' %} / {% endif %} {% if user.is_authenticated %} {% translate 'Profile' %} / {% url 'two-factor-setup' as 2fa %} {% if 2fa %} {% trans "Setup 2fa" %} / {% endif %} {% if user.has_usable_password %} {% trans "Change Password" %} / {% endif %} {% trans 'Sign Out' %} {% else %} {% trans 'Sign In' %} / {% trans 'Sign Up' %} {% endif %} {% endblock %}
{% endblock %} {% block content %}{% endblock %} {% block sidebar %}{% endblock %}