{% extends "base.htm" %}
{% from "form_macros.htm" import render_monitor_dashboard %}
{% from "form_macros.htm" import render_page_links %}
{% from "form_macros.htm" import render_madi_page_dashboard %}
{% block title %}
Wohler iAM-Audio : Dashboard
{% endblock %}
{% block homeActive %}
class="side-nav-active-wohler"
{% endblock %}
{% block config_menu_collapse %}
class="collapse""
{% endblock %}
{% block network_collapse %}
class="collapse"
{% endblock %}
{% block page_setup_class %}
{% if not monitor_id %}
class="collapse"
{% endif %}
{% endblock %}
{% block config_collapse %}
class="collapse""
{% endblock %}
{% block db_collapse %}
class="collapse""
{% endblock %}
{% block header_content %}
-
Dashboard : Configurations / Presets
{% endblock %}
{% block content %}
{% for key in config_channels_dict %}
{% set myconfig = configs[key-1] %}
{{ render_madi_page_dashboard( myconfig , config_channels_dict[key] ) }}
{% endfor %}
{{ title }}
{{ product.name }}
{% if product.screen_number == 16 %}
{% else %}
{% endif %}
System Status
{% if softwares %}
{% for software in softwares %}
|
|
{% if software.name == "FPGA" %}
{{ software.version}}
{% else %}
{{ software.version}}.{{ software.release }}
{% endif %}
|
{% endfor %}
{% endif %}
Unit/Hardware Status
{% if plugin_options %}
{% for option in plugin_options %}
{% if option.status == 1 or option.status ==-1 %}
{{ option.option }} :
{% if option.slot_number | int == 0 %} MADI
{% elif option.slot_number | int == 1 %} SDI 1
{% elif option.slot_number | int == 2 %} SDI 2
{% endif %}
|
|
{{ option.name }}
|
|
{{ option.vendor }}
|
|
{% if option.status == 1 %}
Supported
{% else %}
Not Supported
{% endif %}
|
{% endif %}
{% endfor %}
{% endif %}
{% if aoip_info %}
AoIP Card
|
|
{{ aoip_info['aoipcard'] }}
|
|
|
|
|
{% endif %}
{% endblock %}