{% extends "base.html" %}
{% block title %}Mutenix - Configuration{% endblock %}
{% block content %}
Button Actions
Button ID |
Action |
Extra |
{% for action in button_actions %}
{{ action.button_id }} |
{{ action.action }} |
{{ action.extra }} |
{% endfor %}
LED Configurations
Button ID |
Source |
Color On |
Color Off |
Extra |
{% for led in leds %}
{{ led.button_id }} |
{{ led.source }} |
{{ led.color_on }} |
{{ led.color_off }} |
{{ led.extra }} |
{% endfor %}
YAML Configuration
{{ yaml_config }}
{% endblock %}