{# -*- engine:django -*- #} {# Derived from the original template in django-impersonate #} {% extends "core/base.html" %} {% load i18n %} {% block page_title %} {% blocktrans %}Impersonate user{% endblocktrans %} {% endblock %} {% block content %} {% if page.object_list %}
{% for user in page.object_list %} {{ user }} {% endfor %}
{% endif %} {% if page.has_previous %} Previous Page   {% endif %} {% if page.has_next %} Next Page   {% endif %} {% endblock %}