aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/local_playlist.html
blob: 803c4dcda9741e80bbdd80cc28ff10f9926bbfcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% set page_title = playlist_name + ' - Local playlist' %}
{% extends "base.html" %}
{% import "common_elements.html" as common_elements %}
{% block style %}
    main > *{
        width: 800px;
        margin: auto;
    }

    .playlist-metadata{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
        .playlist-title{
        }
        #playlist-remove-button{
            align-self: center;
            white-space: nowrap;
        }
        #results{
            display: grid;
            grid-auto-rows: 0fr;
            grid-row-gap: 10px;
        }
{% endblock style %}

{% block main %}
    <div class="playlist-metadata">
        <h2 class="playlist-title">{{ playlist_name }}</h2>
        <input type="hidden" name="playlist_page" value="{{ playlist_name }}" form="playlist-edit">
        <button type="submit" id="playlist-remove-button" name="action" value="remove" form="playlist-edit" formaction="">Remove from playlist</button>
    </div>
    <div id="results">
        {% for video_info in videos %}
            {{ common_elements.item(video_info) }}
        {% endfor %}
    </div>
    <nav class="page-button-row">
        {{ common_elements.page_buttons(num_pages, '/https://www.youtube.com/playlists/' + playlist_name, parameters_dictionary) }}
    </nav>
{% endblock main %}