2020-07-29 14:34:00 +05:30
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-08-27 15:37:59 +05:30
|
|
|
<div class="ui text container">
|
2020-07-29 14:34:00 +05:30
|
|
|
<form class="ui form" action="" method="post" novalidate>
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
<p>
|
|
|
|
{{ form.channelId.label }}<br>
|
|
|
|
{{ form.channelId(size=32) }}<br>
|
|
|
|
{% for error in form.channelId.errors %}
|
|
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
<p>{{ form.submit() }}</p>
|
|
|
|
</form>
|
|
|
|
|
2020-09-11 14:10:02 +05:30
|
|
|
{% if results %}
|
2020-08-30 13:35:16 +05:30
|
|
|
<h3 class="ui dividing header">Users</h3>
|
2020-08-27 15:37:59 +05:30
|
|
|
<div class="ui relaxed divided list">
|
2020-07-31 15:58:52 +05:30
|
|
|
|
2020-09-11 14:04:24 +05:30
|
|
|
{% for res in results.channels %}
|
2020-08-17 14:32:18 +05:30
|
|
|
<div class="item">
|
2020-09-11 14:04:24 +05:30
|
|
|
<div class="image">
|
|
|
|
<img src="{{ url_for('img', url=res.thumbnail) }}">
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<a class = "header" href="{{ url_for('channel', id=res.channelId)}}">{{res.username}}</a>
|
|
|
|
<div class="meta">
|
|
|
|
<span>{{res.description}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="description">
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
<div class="extra">
|
|
|
|
<div class="ui label">
|
|
|
|
<i class="user icon"></i> {{res.suscribers}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui label">
|
|
|
|
<i class="video icon"></i> {{res.videos}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if restricted or current_user.is_authenticated %}
|
|
|
|
<div class="right floated content">
|
|
|
|
{% if not current_user.is_following_yt(res.channelId) %}
|
2020-08-17 14:32:18 +05:30
|
|
|
<form action="{{ url_for('ytfollow', channelId=res.channelId) }}" method="post">
|
|
|
|
{{ btform.hidden_tag() }}
|
|
|
|
{{ btform.submit(value='Follow') }}
|
|
|
|
</form>
|
2020-09-11 14:04:24 +05:30
|
|
|
{% else %}
|
2020-08-17 14:32:18 +05:30
|
|
|
<form action="{{ url_for('ytunfollow', channelId=res.channelId) }}" method="post">
|
|
|
|
{{ btform.hidden_tag() }}
|
|
|
|
{{ btform.submit(value='Unfollow') }}
|
|
|
|
</form>
|
2020-09-11 14:04:24 +05:30
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-08-17 14:32:18 +05:30
|
|
|
{% endif %}
|
2020-09-11 14:04:24 +05:30
|
|
|
</div>
|
2020-08-17 14:32:18 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2020-07-31 15:58:52 +05:30
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-08-17 14:32:18 +05:30
|
|
|
|
|
|
|
|
|
|
|
<div class="ui middle aligned divided list">
|
2020-09-11 14:04:24 +05:30
|
|
|
{% if results.videos %}
|
2020-08-30 13:35:16 +05:30
|
|
|
<h3 class="ui dividing header">Videos</h3>
|
2020-08-17 14:32:18 +05:30
|
|
|
<div class="ui centered cards">
|
2020-09-11 14:04:24 +05:30
|
|
|
{% for video in results.videos %}
|
2020-08-17 14:32:18 +05:30
|
|
|
{% include '_video_item.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-07-29 14:34:00 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|