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