{% extends "base.html" %} {% load url from future %} {% block title %} IR Devices - Home Control {% endblock %} {% block page_title %} IR Devices {% endblock %} {% block content %}

IR Devices

{% if devices %}
Device
Location
Delete
{% for d in devices %}
{{ d.transceiver.location }}
{% csrf_token %}
{% endfor %}
{% else %}

Currently there are no devices.

{% endif %}

Add a new device

{% csrf_token %} {{ deviceForm.as_table }}
{% endblock %}