provide more technical track details in the ui

Fixes #15
This commit is contained in:
Kamil
2024-11-27 16:03:39 +00:00
parent da2b725b22
commit ddf73b77db
8 changed files with 153 additions and 6 deletions

View File

@@ -7,6 +7,10 @@
<th>Name</th>
<th>Artist(s)</th>
<th>Path</th>
<th>Container</th>
{% if config['DISPLAY_EXTENDED_AUDIO_DATA'] %}
<th></th>
{% endif %}
<th></th>
<th></th>
</tr>
@@ -14,17 +18,21 @@
<tbody>
{% for track in results %}
<tr>
<td>{{ track.Name }}</td>
<td>{{ track.Name | highlight(search_query) }}</td>
<td>{{ ', '.join(track.Artists) }}</td>
<td>{{ track.Path}}</td>
<td>{{ track.Container }}</td>
{% if config['DISPLAY_EXTENDED_AUDIO_DATA'] %}
<td> {{track.Path | audioprofile(track.Path) }}</td>
{% endif %}
<td>
<button class="btn btn-sm btn-primary" onclick="playJellyfinTrack(this, '{{ track.Id }}')">
<i class="fas fa-play"></i>
</button>
</td>
<td>
<button hx-swap="beforebegin" class="btn btn-sm btn-success" hx-post="/associate_track" hx-vals='{"jellyfin_id": "{{ track.Id }}","spotify_id": "{{ spotify_id}}"}'>
Associate Track
<button hx-swap="beforebegin" class="btn btn-sm btn-success" hx-post="/associate_track" hx-vals='{"jellyfin_id": "{{ track.Id }}","spotify_id": "{{ spotify_id}}"}' data-bs-toggle="tooltip" title="Link this Track [{{track.Id}}] with Spotify-Track-ID {{ spotify_id }}">
Link Track
</button>
</td>
</tr>