{% extends "admin/base_site.html" %} {% load i18n static %} {% load url from future %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
{% for user in object_list %} {% with full_name=user.get_full_name %} {% endwith %} {% endfor %}
{% trans "Choose a user to log in as:" %}
{% if full_name %}{{ full_name }} - {% endif %}{{ user.username }}
{% endblock %}