{% extends "base.html" %} {% load i18n %} {% load django_bootstrap5 %} {% block content %}

{{ subtitle }}

{% trans "Delete Lot" %}
{% blocktranslate with name=object.name count devices=object.devices.count %} Are you sure you want to remove the lot "{{ name }}" with {{ devices }} device? {% plural %} Are you sure you want to remove the lot "{{ name }}" with {{ devices }} devices? {% endblocktranslate %}
{% if object.devices.count > 0 %}
{% trans "All associated devices will be deassigned." %}
{% else %}
{% trans "No devices are associated with this lot." %}
{% endif %}
{% csrf_token %} {% if form.errors %} {% endif %} {% bootstrap_form form %}
{% translate "Cancel" %}
{% endblock %}