{% extends "admin/change_form.html" %} {% load i18n admin_urls static admin_list ow_tags %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }}

{% trans "Upgrade Operations" %}

{% if filter_specs %}
{% trans 'left' %} {% trans 'right' %}
{% for spec in filter_specs %}
{% for choice in spec.choices %} {% if choice.selected %} {% endif %} {% endfor %}
{% endfor %}

{% trans 'Filter' %}

{% if has_active_filters %}

✖ {% trans "Clear all filters" %}

{% endif %} {% if filter_specs|length > 4 %} {% endif %}
{% endif %}
{% for param, value in request.GET.items %} {% if param != 'q' and param != 'page' %} {% endif %} {% endfor %}
{% for operation in upgrade_operations %} {% empty %} {% endfor %}
{% trans "Device" %} {% trans "Status" %} {% trans "Image" %} {% trans "Last Updated" %}
{{ operation.device.name }}
{{ operation.get_status_display }}
{% if operation.image %} {{ operation.image }} {% else %} {% trans "None" %} {% endif %} {{ operation.modified|date }}
{% trans "No device upgrades found." %}
{% if paginator %}

{% blocktrans count counter=paginator.count %} {{ counter }} upgrade operation {% plural %}{{ counter }} upgrade operations {% endblocktrans %}

{% endif %} {% if page_obj.has_other_pages %} {% endif %}
{% endblock %} {% block footer %} {{ block.super }} {% endblock %}