diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-15 12:07:42 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-15 12:07:42 +0200 |
| commit | 600b6afff3066d5fc9c4eca659f969322e670a77 (patch) | |
| tree | 1bccadf85e486520d747bd1144ae98c7d0ad969b /templates/player.j2 | |
| parent | ccdf8fcb51a47b79d5a1c0042699b0d60c3c304c (diff) | |
Cleaned up the code significantly
Diffstat (limited to 'templates/player.j2')
| -rw-r--r-- | templates/player.j2 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/player.j2 b/templates/player.j2 index 5b70df6..68bea2a 100644 --- a/templates/player.j2 +++ b/templates/player.j2 @@ -1 +1,6 @@ -<button class={% if player.status %} "button is-success" {% else %} "button is-danger" {% endif %} hx-post="{{ "/player-toggle/" ~ player.name}}" hx-trigger="click" hx-swap="outerHTML">{{ player.name }}</button>
\ No newline at end of file +<button class={% if status %} "button is-success" {% else %} "button is-danger" {% endif %} + hx-post="{{ "/player-toggle/" ~ id}}" + hx-trigger="click" + hx-swap="outerHTML"> + {{ name }} +</button>
\ No newline at end of file |
