{% extends "base.html" %} {% load static %} {% block title %}Delete {{ activity.name }} - Activity{% endblock %} {% block content %}

Delete Activity

Confirm deletion of activity from {{ workflow.name }}

Confirm Deletion
Activity to be deleted:
Name:
{{ activity.name }}
Guidance:
{{ activity.guidance|truncatewords:30 }}
Phase:
{% if activity.phase %}{{ activity.phase.name }}{% else %}Unassigned{% endif %}
Order:
#{{ activity.order }}
Dependencies:
{% if activity.predecessor or activity.successor %} Yes {% else %} No {% endif %}
Created:
{{ activity.created_at|date:"M d, Y" }}
{% csrf_token %}
Cancel
What happens when you delete?
  • The activity will be permanently removed from the workflow
  • Order numbers of other activities will remain unchanged
  • This action cannot be undone - consider exporting data first
{% endblock %}