{% extends "chats/channel_detail.html" %} {% load bootstrap_helpers %} {% load community_badges %} {% load community_utils %} {% load chats %} {% load members %} {% block subtitle %} {{ block.super }} {{ channel.channel_type.tracker }}: {{ channel.channel_type.status }} {% endblock %} {% block tabs %} {% with subscription=channel|subscription_for:user active_tab=request.GET.tab|default:"conversationTab" %} {% tab_list conversationTab="Conversation" subscriberTab="Subscribers" issuePropertiesTab="Properties" relationsTab="Related tasks" disabled_tabs=subscription|ifnotthen:"subscriberTab" %} {% tab_content "conversationTab" %} {% include "chats/components/channel_conversation.html" %} {% endtab_content %} {% tab_content "subscriberTab" %} {% if subscription %} {% member_rows channel.subscribers.all %} {% endif %} {% endtab_content %} {% tab_content "issuePropertiesTab" %} {% block properties %} {% if channel.channel_type.closed_on %} {% endif %} {% endblock %}
Property Value
Status {{ channel.channel_type.status }}
Closed on {{ channel.channel_type.closed_on }}
Tracker {{ channel.channel_type.tracker }}
Priority {{ channel.channel_type.priority }}
Start date {{ channel.channel_type.start_date }}
Due date {{ channel.channel_type.due_date }}
Assignees {% for member in channel.channel_type.assignees.all %} {% member_badge member %} {% endfor %}
Progress {{ channel.channel_type.done_ratio }} %
Estimated hours {{ channel.channel_type.estimated_hours }}
{% endtab_content %} {% tab_content "relationsTab" %} {% issue_tree channel.issue.issuenode.get_root highlight=channel%} {% endtab_content %} {% endtab_list %} {% endwith %} {% endblock tabs %}