{% extends "base.html" %} {% load automate_tags %} {% block content %}

Types view

Shows objects grouped by types

Sensors


Name
Status

{% for i in system.sensors|name_sort %} {% ifchanged %}
{{ i.class_name }}s
{% endifchanged %} {% include 'rows/sensor_row.html' with sensor=i %}
{% endfor %}
{% block programs %}

Programs


Name
Pri
Act

{% for i in system.objects|name_sort %} {% if i.is_program %} {% include 'rows/program_row.html' with program=i programlist=True %}
{% endif %} {% endfor %} {% endblock %}
{% for i in system.actuators|name_sort %} {% if forloop.first %}

Actuators


Name
Status

{% endif %} {% ifchanged %}
{{ i.class_name }}
{% endifchanged %} {% include 'rows/actuator_row.html' with actuator=i %}
{% endfor %}
{% endblock %}