{% 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 %}