2021-01-21 23:26:31 +01:00
|
|
|
{% extends "video_channels/base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ domain }}{% endblock %}
|
|
|
|
|
2021-01-23 15:20:10 +01:00
|
|
|
{% block content %}
|
2021-01-21 23:26:31 +01:00
|
|
|
|
|
|
|
{{ video_playlists.total }} Playlists
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
2021-07-18 00:52:53 +02:00
|
|
|
<hr>
|
2021-07-18 00:10:24 +02:00
|
|
|
<div id="wrap">
|
|
|
|
{% for playlist in video_playlists.data %}
|
|
|
|
<div class="result-wrapper">
|
2021-01-21 23:26:31 +01:00
|
|
|
<img src="https://{{ domain }}{{ playlist.thumbnailPath }}" height="150"/>
|
2021-07-18 00:10:24 +02:00
|
|
|
|
|
|
|
<div class="result-info">
|
|
|
|
<b>{{ playlist.displayName }}</b>
|
|
|
|
<br>
|
|
|
|
{{ playlist.videosLength }} Videos
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-07-18 00:52:53 +02:00
|
|
|
<hr>
|
2021-01-21 23:26:31 +01:00
|
|
|
|
|
|
|
{% endblock %}
|