{% extends 'vestlus.html' %} {% load crispy_forms_tags %} {% load crispy_forms_field %} {% block content %}

{{ channel.name }} {% if channel.is_private %} {% endif %}

New message {% if object.owner == request.user %} {% endif %}
{% if user_in_admins %}
{% if channel.owner == request.user %} You own this channel. {% else %} You are an admin of this channel. {% endif %}
{% endif %}
{% if user_in_admins %}

Invite member

{% endif %}
{% for membership in channel.members.all %}

Joined {{ membership.created_at|timesince }} ago

{% endfor %}

{% if not channel.conversations.count %}

No messages yet

{% else %} {% for message in channel.conversations.all %}
40x40
{% if message.sender == request.user %} {% endif %}
{{ message.content }}
{% endfor %} {% endif %}
{% endblock content %} {% block script %} {% endblock %}