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

Activities in {{ playbook.name }}

All activities across workflows in this playbook

{% if activities %}
Activities {{ activities|length }}
{% for activity in activities %} {% endfor %}
Name Abbrev. Workflow Phase Actions
{{ activity.name }} {% if activity.reference_label %} {{ activity.reference_label }} {% else %} {% endif %} {{ activity.workflow.name }} {% if activity.phase %}{{ activity.phase.name }}{% else %}—{% endif %}
{% else %}

No activities yet

Activities are added from workflows in this playbook.

Back to playbook
{% endif %}
{% endblock %}