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

Edit Activity

{{ activity.name }} in {{ workflow.name }}

Activity Details
{% csrf_token %}
{% if errors.name %}
{{ errors.name }}
{% endif %} Unique name for this activity (max 200 characters)
{% if errors.guidance %}
{{ errors.guidance }}
{% endif %} Rich Markdown guidance with instructions, examples, images, and Mermaid diagrams
Optional: Assign to a lifecycle phase {% if not available_phases %} No phases defined for this playbook yet. {% endif %}
{% if errors.order %}
{{ errors.order }}
{% endif %} Execution order within workflow
{% if disable_dependencies %} No other activities yet - dependencies will be available after creating more activities {% endif %}
{% if disable_dependencies %} No other activities yet - dependencies will be available after creating more activities {% endif %}
Optional: AI agent to perform this activity
Optional: Skill required for this activity
{% if available_rules %}
{% for rule in available_rules %}
{% endfor %}
{% else %}

No rules. Create one.

{% endif %}
{% if available_artifacts %}
{% for artifact in available_artifacts %}
{% endfor %}
{% else %}

No artifacts available in this playbook yet

{% endif %} Optional: Select artifacts consumed as inputs
Cancel
Editing Activity

Updating this activity will preserve its history. All changes are logged with timestamps.

Original Activity
Created:
{{ activity.created_at|date:"M d, Y" }}
Last Updated:
{{ activity.updated_at|date:"M d, Y H:i" }}
{% endblock %}