SimpleerTube_peertube_minim.../templates/accounts/video_channels.html

29 lines
620 B
HTML

{% extends "accounts/base.html" %}
{% block title %}{{ domain }}{% endblock %}
{% block sub_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 %}