1
0
mirror of https://git.sr.ht/~metalune/simpleweb_peertube synced 2024-12-23 04:08:23 +01:00
SimpleerTube_peertube_minim.../templates/accounts/video_channels.html
2021-01-23 15:20:10 +01:00

29 lines
616 B
HTML

{% extends "accounts/base.html" %}
{% block title %}{{ domain }}{% endblock %}
{% block content %}
{{ video_channels.total }} Channels
<br>
<br>
<table>
{% for channel in video_channels.data %}
<tr>
<td>
<img src="https://{{ domain }}{{ channel.avatar.path }}" height="75"/>
</td>
<td>
<a href="/{{ domain }}/video-channels/{{ channel.name }}@{{ channel.host }}">
<b>{{ channel.displayName }}</b>
</a>
<br>
{{ channel.followersCount }} Followers
</td>
</tr>
{% endfor %}
</table>
{% endblock %}