{% extends "base.html" %} {% block comments %} {% endblock %} {% load url from future %} {% block title %}App Framework: Edit Devices{% endblock %} {% block header_row %}

Edit Devices

Update IP addresses and Username/Password for each device

{% endblock %} {% block content %}
{% if invalid %}

Ensure all enabled devices have valid credentials

{% endif %}
{% csrf_token %} {{ formset.management_form }} {% if not tabledata %} {% endif %} {% for form, device in tabledata %} {% for field in form.visible_fields %} {% endfor %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endfor %}
Enabled Name Module Host Port
No devices defined yet.
{{ field }} {{ device.name }} {% if not device.password %}
(missing password) {% endif %}
{{ device.module }} {{ device.host }} {{ device.port }}
{% endblock %}