2020-10-24 14:04:33 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content_inner %}
|
2021-04-04 22:14:30 +00:00
|
|
|
<h3 class="h5">Audio Outputs</h3>
|
2020-10-24 14:04:33 +00:00
|
|
|
<code>
|
2021-04-04 22:14:30 +00:00
|
|
|
|
2020-10-24 14:04:33 +00:00
|
|
|
{% for output in data.outputs %}
|
2021-04-04 22:14:30 +00:00
|
|
|
|
|
|
|
Set for:
|
|
|
|
{% for channel in data.channels %}
|
2021-04-05 21:13:53 +00:00
|
|
|
<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>
|
2020-10-24 14:04:33 +00:00
|
|
|
{% endfor %}
|
|
|
|
</code>
|
2020-11-05 18:59:28 +00:00
|
|
|
{% endblock %}
|