{% extends "base.html" %} {% load static %} {% block title %}Create Playbook - Step 3{% endblock %} {% block content %}

Basic Information

Add Workflows

Publishing

Review Your Playbook
Name:
{{ wizard_data.name }}
Description:
{{ wizard_data.description }}
Category:
{{ wizard_data.category|title }}
{% if wizard_data.tags %}
Tags:
{% for tag in wizard_data.tags %} {{ tag }} {% endfor %}
{% endif %}
Visibility:
{% if wizard_data.visibility == 'private' %}Private{% elif wizard_data.visibility == 'public' %}Public{% else %}{{ wizard_data.visibility|title }}{% endif %} {% if wizard_data.visibility == 'public' %} — any authenticated user can view after creation {% else %} — only you can view until you change visibility to Public {% endif %}
{% if wizard_data.workflows %}
Workflows:
    {% for workflow in wizard_data.workflows %}
  • {{ workflow.name }}
  • {% endfor %}
{% endif %}

Step 3: Publishing

Playbook Versioning & Lifecycle:
  • Draft: Starts at v0.1, editable via GUI/MCP, auto-increments version on every change (0.1 → 0.2 → 0.3...)
  • Released: Starts at v1.0, read-only, changes only via PIP (Process Improvement Proposal)
{% csrf_token %}
{% for radio in form.status %}
{{ radio.tag }}
{% endfor %} {% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
Back
{% endblock %}