48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="blue ui centered card">
|
|
<div class="content">
|
|
<div class="center aligned author">
|
|
<img class="ui avatar image" src="{{channel.avatar}}">
|
|
</div>
|
|
<div style="margin: .1em" class="center aligned header"><a href="">{{channel.name}}</a></div>
|
|
<div class="center aligned description">
|
|
<a>
|
|
<i class="users icon"></i>
|
|
{{channel.subCount}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="center aligned extra content">
|
|
{% if not current_user.is_following_yt(channel.id) %}
|
|
<p>
|
|
<form action="{{ url_for('ytfollow', channelId=channel.id) }}" method="post">
|
|
{{ btform.hidden_tag() }}
|
|
{{ btform.submit(value='Follow') }}
|
|
</form>
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
<form action="{{ url_for('ytunfollow', channelId=channel.id) }}" method="post">
|
|
{{ btform.hidden_tag() }}
|
|
{{ btform.submit(value='Unfollow') }}
|
|
</form>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
<br>
|
|
{% if not videos %}
|
|
{% include '_empty_feed.html' %}
|
|
{% else %}
|
|
<div class="ui centered cards">
|
|
{% for video in videos %}
|
|
{% include '_video_item.html' %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %} |