{% extends "home/base.html" %} {% load static %} {% load humanize %} {% block content %}

Channels

add-icon
{% csrf_token %} {{ subscribe_form }}
Show subscribed only:
{% if not show_subed_only %} {% else %} {% endif %}
grid view list view

Total channels: {{ max_hits }}

{% if results %} {% for channel in results %}

{{ channel.source.channel_name }}

{% if channel.source.channel_subs >= 1000000 %}

Subscribers: {{ channel.source.channel_subs|intword }}

{% else %}

Subscribers: {{ channel.source.channel_subs|intcomma }}

{% endif %}

Last refreshed: {{ channel.source.channel_last_refresh }}

{% if channel.source.channel_subscribed %} {% else %} {% endif %}
{% endfor %} {% else %}

No channels found...

{% endif %}
{% endblock content %}