27 lines
517 B
HTML
27 lines
517 B
HTML
{% extends "video_channels/base.html" %}
|
|
|
|
{% block title %}{{ domain }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{{ video_playlists.total }} Playlists
|
|
<br>
|
|
<br>
|
|
|
|
<table>
|
|
{% for playlist in video_playlists.data %}
|
|
<tr>
|
|
<td>
|
|
<img src="https://{{ domain }}{{ playlist.thumbnailPath }}" height="150"/>
|
|
</td>
|
|
<td>
|
|
<b>{{ playlist.displayName }}</b>
|
|
<br>
|
|
{{ playlist.videosLength }} Videos
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|