{% extends "base.html" %} {% block title %}Soundboard – {{ config.name }}{% endblock %} {% block content %}

Soundboard – {{ config.name }}

Wähle einen Sound aus – wird direkt über den Raspberry Pi ausgegeben.

{% set has_local = sounds_local and sounds_local|length > 0 %} {% set has_global = sounds_global and sounds_global|length > 0 %} {% if has_local %}

Lok-spezifische Sounds

{% for sound in sounds_local %}
{{ sound.name }}
{% if sound.description %}

{{ sound.description }}

{% endif %}
{% endfor %}
{% endif %} {% if has_global %}

Standard-Sounds

{% for sound in sounds_global %}
{{ sound.name }}
{% if sound.description %}

{{ sound.description }}

{% endif %}
{% endfor %}
{% endif %} {% if not has_local and not has_global %}
In dieser Konfiguration sind keine Sounds definiert und keine Default-Sounds vorhanden.
{% endif %}
Zurück zur Steuerung
{% endblock %} {% block scripts %} {% endblock %}