mirror of
https://codeberg.org/SimpleWeb/SimpleerTube.git
synced 2024-11-15 13:43:17 +00:00
28 lines
600 B
HTML
28 lines
600 B
HTML
{% extends "video_channels/base.html" %}
|
|
|
|
{% block title %}{{ domain }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{{ video_playlists.total }} Playlists
|
|
<br>
|
|
<br>
|
|
|
|
<hr>
|
|
<div id="wrap">
|
|
{% for playlist in video_playlists.data %}
|
|
<div class="result-wrapper">
|
|
<img src="https://{{ domain }}{{ playlist.thumbnailPath }}" height="150"/>
|
|
|
|
<div class="result-info">
|
|
<b>{{ playlist.displayName }}</b>
|
|
<br>
|
|
{{ playlist.videosLength }} Videos
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<hr>
|
|
|
|
{% endblock %}
|