{% extends "admin/base_site.html" %} {% load i18n l10n media_admin_tags %} {% block title %}{% trans "Tag items..." %} | {% trans 'Django site admin' %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}

Tag {{queryset|length}} item(s) with...

The following items will be tagged...
    {% for item in queryset %}
  • {{item.title}}
    {{item}}
  • {% endfor %}
{% for obj in queryset %} {% endfor %}
{% endblock %}