11 lines
255 B
HTML
11 lines
255 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Рекомендации:</h1>
|
|
{% include "components/track_list.html" with tracks=tracks %}
|
|
</div>
|
|
{% include "components/player.html" %}
|
|
{% endblock %}
|