{% extends "base.html" %} {% block content %}
{% if results %} {% if results.channels %}

Users

{% endif %}
{% for res in results.channels %}
{% if config.isInstance %} Avatar {% else %} Avatar {% endif %}
{{res.username}}
{{res.description}}

{{res.suscribers}}
{{res.videos}}
{% if restricted or current_user.is_authenticated %}
{% if not current_user.is_following_yt(res.channelId) %}
{{ btform.hidden_tag() }} {{ btform.submit(value='Follow') }}
{% else %}
{{ btform.hidden_tag() }} {{ btform.submit(value='Unfollow') }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if results.videos %}

Videos

{% for video in results.videos %} {% include '_video_item.html' %} {% endfor %}
{% endif %}
{%if ppage%}
{%endif%} {% endblock %}