{% extends "base.html" %} {% block content %}

{{data.channel_name}}

{{data.short_description}}

{%if data.approx_suscriber_count == None%} ? {%else%} {{data.approx_subscriber_count}} {%endif%}
Followers
{% if restricted or current_user.is_authenticated %} {% if not current_user.is_following_yt(data.channel_id) %}
{% else %}
{%endif%} {%endif%}


{% if data['error'] != None %} {% include '_empty_feed.html' %} {% else %}
{% for video in data['items'] %}
{%if video.duration == "PREMIERING NOW" or video.duration == "LIVE"%} LIVE {%else%} {{video.time_published}} {%endif%}
{% endfor %}
{% endif %}

{% endblock %}