{% load humanize %} {% load chats %} {% load community_utils %} {% load activities %} {% load sekizai_tags %}
{% block top_row %} {% block channel_name %} {% with subscription=channel|subscription_for:user %}
{{ channel|name_for:user }}
{% endwith %} {% endblock %}
{% block top_badges %} {% if not hide_followers %} {% with followers=channel.followers.count %}
{{ followers }}
{% endwith %} {% endif %} {% if not hide_comments %} {% with comments=channel|comment_count %}
{{ comments }}
{% endwith %} {% endif %}
{{ channel.last_comment_modification_date|naturaltime }}
{% endblock %}
{% endblock %}
{% block bottom_row %}
{% block bottom_row_badges %} {% if not hide_keywords %} {% for keyword in channel.keywords.all %} {% channelkeyword_badge keyword channel %} {% endfor %} {% endif %} {% if not channel.get_list_url|same_url:request.path %} {{ channel.channel_type|verbose_model_name }} {% endif %} {% if not hide_activities %} {% for channel_relation in channel.activitychannelrelation_set.all %} {% add_to_filters "activity" channel_relation.activity.pk path=channel_relation.get_list_url remove=True as filter_url %} {% activity_badge channel_relation.activity badge_url=filter_url %} {% endfor %} {% endif %} created {{ channel.date_created|naturaltime }} {% block channel_id %}
#{{ channel.channel_id }}
{% endblock %} {% endblock %}
{% endblock %}