Files
jellyplist/templates/partials/_playlist_info.html
Kamil 87791cf21d - Support multiple music providers
- feat: Doubleclick on track in Table view to get technical information about it
2024-12-03 12:48:27 +00:00

14 lines
566 B
HTML

<div class="d-flex align-items-center row sticky-top py-3 mb-3 bg-dark" style="top: 0; z-index: 1000;">
<div class="col-6">
<img src="{{ item.image }}" class="img-fluid">
</div>
<div class="col-6">
<div class="playlist-info">
<h1>{{ item.name }}</h1>
<p>{{ item.description }}</p>
<p>{{ item.track_count }} songs, {{ total_duration }}</p>
<p>Last Updated: {{ item.last_updated}} | Last Change: {{ item.last_changed}}</p>
{% include 'partials/_add_remove_button.html' %}
</div>
</div>
</div>