{% extends "base.html" %} {% load static %} {% load markdown_filters %} {% block title %}Activities - {{ workflow.name }}{% endblock %} {% block content %}

Activities in {{ workflow.name }}

{{ total_activities }} {{ total_activities|pluralize:"Activity,Activities" }} {% if has_phases %} {{ activities_by_phase|length }} {{ activities_by_phase|length|pluralize:"Phase,Phases" }} {% endif %}

{% if can_edit %} Create Activity {% endif %} Back to Workflow
{% if total_activities > 0 %} {% if has_phases %} {% for phase_name, activities in activities_by_phase.items %}
{{ phase_name }} {{ activities|length }}
{% for activity in activities %} {% endfor %}
# Name Abbrev. Guidance Dependencies Actions
{{ activity.order }} {{ activity.name }} {% if activity.reference_label %} {{ activity.reference_label }} {% else %} {% endif %} {{ activity.guidance|markdown|striptags|truncatewords:15 }} {% if activity.predecessor or activity.successor %} {% else %} {% endif %}
{% if can_edit %} {% endif %}
{% endfor %} {% else %}
{% for phase_name, activities in activities_by_phase.items %} {% for activity in activities %} {% endfor %} {% endfor %}
# Name Abbrev. Guidance Dependencies Actions
{{ activity.order }} {{ activity.name }} {% if activity.reference_label %} {{ activity.reference_label }} {% else %} {% endif %} {{ activity.guidance|markdown|striptags|truncatewords:15 }} {% if activity.predecessor or activity.successor %} {% else %} {% endif %}
{% if can_edit %} {% endif %}
{% endif %} {% else %}

No activities yet

Get started by creating your first activity for this workflow.

{% if can_edit %} Create First Activity {% endif %}
{% endif %}
{% endblock %}