BAPSicle/templates/config.html

16 lines
416 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block content_inner %}
2021-04-04 22:14:30 +00:00
<h3 class="h5">Audio Outputs</h3>
<code>
2021-04-04 22:14:30 +00:00
{% for output in data.outputs %}
2021-04-04 22:14:30 +00:00
Set for:
{% for channel in data.channels %}
<a href="/player/{{channel.channel}}/output/{{output.name}}">Channel {{channel.channel}}</a>
2021-04-04 22:14:30 +00:00
{% endfor %}
- {% if output.name %}{{output.name}}{% else %}System Default Output{% endif %}<br>
{% endfor %}
</code>
{% endblock %}