{% from 'forms.html' import value_form, setting_input_form, setting_output_form, checkbox_form %} {% block body%}
{% block content %}

Setup

Inputs

    {% for device in responses['inputs'] %} {% set current_input = (loop.index-1)==responses['current_input'] %} {% set current_aux = (loop.index-1)==responses['current_aux'] %}
    • {{ setting_input_form(device, limit['input'], limit['input_balance'], res['input']) }}
  1. {% endfor %}
Restore Default Input Names

Outputs

    {% for device in responses['output_device'] %}
  1. {{ setting_output_form(device, limit['output'], res['output']) }}
  2. {% endfor %}
Restore Default Output Names

Room:

Volume Resolution

0.1 dB
0.5 dB
1 dB

Default Volume:

{{value_form('default_volume', responses['default_volume'],limit['default_vol'],10)}}

Max Volume:

{{value_form('max_volume', responses['max_volume'],limit['max_vol'], 10)}}

Soft Level

{{ value_form('soft_level', responses['soft_level'],limit['soft'], res['soft']) }}

Settings

{{checkbox_form('aux_polarity', 'Aux Polarity', responses['polarity_aux'])}} {{checkbox_form('aux_follows_main', 'Aux Follows Main', responses['aux_follows_main'])}}

Restore Factory Defaults
{% endblock %}
{% endblock %}