yotter / app /templates /ytfollowing.html
soiz1's picture
Upload 147 files
340cbde verified
raw
history blame
1.14 kB
{% extends "base.html" %}
{% block content %}
<div style="padding: 1.3em;" class="ui one column centered grid">
<a href="{{ url_for('ytfollowing') }}"><div class="ui red statistic">
<div class="value">
{{ channelCount }}
</div>
<div class="label">
Following
</div>
</div></a>
</div>
<div class="ui text container">
<div class="ui relaxed divided list">
{% for channel in channelList %}
<div class="item">
<div class="right floated content">
<p>
<form action="{{ url_for('ytunfollow', channelId=channel.channelId) }}" method="post">
{{ form.hidden_tag() }}
{{ form.submit(value='Unfollow') }}
</form>
</p>
</div>
<div class="content">
<a href="{{ url_for('channel',id=channel.channelId)}}" class="header">{{channel.channelName}}</a>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}