{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block title %}{% trans "Assign selected units to user" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}{% trans "Assign selected units to user" %}{% endblock %} {% block content %}
{% csrf_token %} {% for pk in selected_action %} {% endfor %}

{% blocktrans trimmed count counter=units.count %} You are about to assign {{ counter }} unit to a single user. {% plural %} You are about to assign {{ counter }} units to a single user. {% endblocktrans %}

{% trans "Units already assigned to this user will be skipped." %}
{% trans "Selected units" %}
    {% for unit in units %}
  • {{ unit }}
  • {% endfor %}
{% endblock %}