{% extends "admin/base_site.html" %} {% load i18n l10n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation delete-selected-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if related_count or firmwareless_count %}

{% blocktrans %} Are you sure you want to proceed with the mass upgrade operation for {{ build }}? {% endblocktrans %}

{% elif not related_count and not firmwareless_count %}

{% blocktrans %} No devices to upgrade were found. Hint: Maybe they have been all already updated previously. {% endblocktrans %}

{% endif %}
{% csrf_token %}
{% if firmwareless_count or related_count %} {% if form.errors %}
{{ form.errors }}
{% endif %} {{ form.build }}

{% trans "Upgrade Filters" %}

{{ form.group.errors }} {{ form.group.label_tag }} {{ form.group }}
{{ form.group.help_text|safe }}
{{ form.location.errors }} {{ form.location.label_tag }} {{ form.location }}
{{ form.location.help_text|safe }}
{{ form.upgrade_options.label_tag }} {{ form.upgrade_options }}
{% if firmwareless_count and related_count %} {% endif %} {% endif %} {% if related_count or firmwareless_count %}{% trans "Cancel the upgrade" %}{% else %}{% trans "Go back" %}{% endif %}
{% endblock %} {% block footer %} {{ block.super }} {% endblock footer %}