{% extends "admin/base_site.html" %} {% load i18n admin_urls admin_static admin_list %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% if locations %} {% endif %} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} search-list{% if users %} users {% endif %}{% if locations %} locations{% endif %}{% endblock %} {% block coltype %}flex{% endblock %} {% block content %}
{% block search %}
{% for field in search_form %} {{ field }} {% endfor %} {% if is_popup %}{% endif %}
{% if locations %}
{% endif %}
{% endblock %} {% block result_list %} {% if results %}
{% for header in result_headers %} {% endfor %} {% for result in results %} {% if locations %} {% elif users %} {% endif %} {% endfor %}
{{ header }}
{{ result.id }} {{ result.name|default:"—" }}{{ result.id }} {{ result.full_name|default:"—" }} {{ result.username }}
{% else %} {% if errors %}

{{ errors|capfirst }}

{% else %}

{% trans 'No results.' %}

{% endif %} {% endif %} {% endblock %}
{% endblock %}