{% extends "base.html" %} {% block content %}

Group Tasks: {{ channel_display_name }}

{{ service_label }} · {{ identifier }}

Create Or Map Project

{% csrf_token %}
{% csrf_token %}
{% if not tasks %}

No Tasks Yet

This group has no derived tasks yet. To start populating this view:

  1. Open Task Settings and confirm this chat is mapped under Group Mapping.
  2. Send task-like messages in this group, for example: task: ship v1, todo: write tests, please review PR.
  3. Mark completion explicitly with a phrase + reference, for example: done #12, completed #12, fixed #12.
  4. Refresh this page; new derived tasks and events should appear automatically.
{% endif %}

Mappings

{% for row in mappings %} {% empty %} {% endfor %}
ProjectEpicChannelEnabled
{{ row.project.name }} {% if row.epic %}{{ row.epic.name }}{% else %}-{% endif %}
{{ row.service }} · {{ row.channel_identifier }}
{% if channel_display_name %}

{{ channel_display_name }}

{% endif %}
{{ row.enabled }} Open Project
No mappings for this group.

Derived Tasks

{% for row in tasks %} {% empty %} {% endfor %}
RefTitleProjectStatus
#{{ row.reference_code }} {{ row.title }} {{ row.project.name }}{% if row.epic %} / {{ row.epic.name }}{% endif %} {{ row.status_snapshot }} Open
No tasks yet.
{% endblock %}