{% extends 'vestlus.html' %} {% block content %}

Channels

{% for object in object_list %}
{{ object.name }} {% if object.is_private %} {% endif %} {% if object.owner == request.user %} You created this channel {% else %} Joined {{ object.created_at|timesince }} ago {% endif %}
{% endfor %}
{% if recommended_channels.count %}
Available to Join
{% for object in recommended_channels|slice:4 %}
{{ object.name }} {% if object.is_private %} {% endif %} {% if object.owner == request.user %} You created this channel {% else %} Joined {{ object.created_at|timesince }} ago {% endif %}
{% endfor %}
{% endif %}
{% endblock content %}