Добавил плеер в шаблон album_detail.html

This commit is contained in:
Viner Abubakirov
2026-01-03 15:03:04 +05:00
parent 5e4061f61f
commit 8c68dbda9f

View File

@@ -7,5 +7,8 @@
<p>Artist: {{ album.artist }}</p> <p>Artist: {{ album.artist }}</p>
<p>Release Date: {{ album.release_date }}</p> <p>Release Date: {{ album.release_date }}</p>
<h2>Tracks</h2> <h2>Tracks</h2>
<div class="container">
{% include 'components/track_list.html' with tracks=album.tracks.all %} {% include 'components/track_list.html' with tracks=album.tracks.all %}
{% include 'components/player.html' %}
</div
{% endblock %} {% endblock %}