{% extends "admin/base_site.html" %} {% load admin_urls static %} {% block content %}

Hardware Layout Overview

Active chassis grouped by manufacturer and network address.

{% for manufacturer in hardware_layout.manufacturers %}

{{ manufacturer.name }}

{% for location in manufacturer.locations %}

{{ location.name }}

{% for chassis in location.chassis %} {% for channel in chassis.channels %}
CH {{ channel.channel_number }}
{% if channel.frequency %}
{{ channel.frequency }}
{% else %}
-
{% endif %}
{% endfor %} {% endfor %}
{% endfor %}
{% empty %}

No active receivers found.

{% endfor %}
{% endblock %} {% block extrastyle %} {% endblock %}