{% extends "ui/base-devices.html" %} {% load url from future %} {% load icons %} {% block sidebar %}

Devices being edited:

{% endblock %} {% block contentarea %}

Hint: use checkboxes next to labels to mark fields that you want to change.

Fields highlighted in yellow mean different values between devices.

{% csrf_token %}
{% for d in devices %} {% endfor %} {% for f in form.visible_fields %} {% if f.name != 'save_comment' %}
{{ f }} {% for e in f.errors %} {{ e }} {% empty %} {% if f.help_text %} {{ f.help_text }} {% endif %} {% endfor %}
{% endif %} {% endfor %}
{{ form.save_comment }}
{% for e in form.save_comment.errors %}
{{ e }}
{% empty %}
{{ form.save_comment.help_text }}
{% endfor %}
{% endblock %}