{% for device in network %}
{% if device.type == 'RelayDevice' %}
{% include 'RelayDevice.html' %}
{% elif device.type == 'LightStrip' %}
{% include 'LightStrip.html' %}
{% elif device.type == 'LixieClock' %}
{% include 'LixieClock.html' %}
{% endif %}
{% endfor %}