{% extends "base.html" %} {% from 'forms.html' import value_form, input_form, output_form, checkbox_form %} {% block title %} Boulder Amplifiers {% endblock %} {%block styles %} {{super()}} {% endblock %} {% block body%}
{% block content %}
{% if responses['update_in_progress'] %}

{{responses['update_status']}}

{{responses['update_progress']}}%
{% elif responses['update_available'] %}

Update Avaliable:

Update
{% endif %}

Inputs

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

Output Trim

    {% for device in responses['output_device'] %}
  1. {{ output_form(device, limit['output'], res['output']) }}
  2. {% endfor %}

Toggle Standby

Standby

Upload Logs

Upload Logs

Room:

Volume Resolution

0.1 dB
0.5 dB
1 dB

Blend

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

Balance

{{ value_form('balance', responses['balance'],limit['balance'], res['volume']) }}

Master Volume

{{ value_form('master_volume', responses['master_volume'],limit['volume'], res['volume']) }}

Soft

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

Display Brightness

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

Default Volume:

Max Volume:

Settings

{{checkbox_form('mute', 'Mute', responses['mute'])}} {{checkbox_form('soft_mute', 'Soft Mute', responses['soft'])}} {{checkbox_form('polarity', 'Polarity Absolute', responses['polarity'])}} {{checkbox_form('polarity_right', 'Polarity Right Channel', responses['polarity_right'])}} {{checkbox_form('aux_disabled', 'Aux Disabled', responses['aux_disabled'])}} {{checkbox_form('aux_polarity', 'Aux Polarity', responses['polarity_aux'])}} {{checkbox_form('aux_follows_main', 'Aux Follows Main', responses['aux_follows_main'])}}

Version

{{responses['software_version']}}
{% endblock %} {% endblock %}