{% 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></a>
<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 class="content">
<a href="{{ url_for('channel',id=channel.channelId)}}" class="header">{{channel.channelName}}</a>
{% endfor %}
{% endblock %}