{% extends 'admin/change_list.html' %} {% load admin_list i18n adminsortable_tags %} {% load static from staticfiles %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block title %}{% blocktrans with opts.verbose_name_plural|capfirst as model %}Drag and drop {{ model }} to change display order{% endblocktrans %} | {% trans 'Django site admin' %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}

{% if sort_type %} {% blocktrans with opts.verbose_name_plural|capfirst as model %}Drag and drop {{ sort_type }} {{ model }} to change their order.{% endblocktrans %} {% else %} {% blocktrans with opts.verbose_name_plural|capfirst as model %}Drag and drop {{ model }} to change their order.{% endblocktrans %} {% endif %}

{% if sortable_by_class.is_sortable %}

{% blocktrans %}You may also drag and drop {{ sortable_by_class_display_name }} to change their order.{% endblocktrans %}

{% endif %} {% endblock %} {% block content %}
{% block object-tools %} {% endblock %} {% if objects %}
{% if group_expression %} {% render_nested_sortable_objects objects group_expression %} {% else %} {% render_sortable_objects objects %} {% endif %}
{% endif %}
{% endblock %}