Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1)
- {% extends 'musicapp/base.html' %}
- {% block content %}
- <h2>Все Треки</h2>
- <ul>
- {% for track in tracks %}
- <li>
- <a href="{% url 'play_track' track.id %}">{{ track.title }}</a> - {{ track.artist.name }}
- </li>
- {% empty %}
- <li>Нет доступных треков.</li>
- {% endfor %}
- </ul>
- {% endblock %}
- 2)
- {% block content %} {% endblock %} 9.1) {% extends 'musicapp/base.html' %}
- 3)
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8">
- <title>Музыкальный Стриминг Сервис</title>
- </head>
- <body>
- <header>
- <h1><a href="{% url 'home' %}">Музыкальный Стриминг Сервис</a></h1>
- {% if user.is_authenticated %}
- <p>Привет, {{ user.username }} | <a href="{% url 'logout' %}">Выйти</a></p>
- {% else %}
- <p><a href="{% url 'login' %}">Войти</a> | <a href="{% url 'signup' %}">Регистрация</a></p>
- {% endif %}
- <nav>
- <a href="{% url 'upload_track' %}">Загрузить Трек</a> |
- <a href="{% url 'my_playlists' %}">Мои Плейлисты</a>
- </nav>
- <form method="get" action="{% url 'home' %}">
- <input type="text" name="q" placeholder="Поиск...">
- <button type="submit">Поиск</button>
- </form>
- </header>
- <hr>
- {% block content %}
- {% endblock %}
- </body>
- </html>
- 4)
- {% extends 'musicapp/base.html' %}
- {% block content %}
- <h2>Загрузить Трек</h2>
- <form method="post" enctype="multipart/form-data">
- {% csrf_token %}
- {{ form.as_p }}
- <button type="submit">Загрузить</button>
- </form>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement