{% extends "base.html" %} {% block title %}Ansible Playbook Management - Server Monitoring{% endblock %} {% block page_title %}Ansible Playbook Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Ansible Playbook Management

Create, edit, and manage your Ansible automation playbooks
Custom

{{ playbooks | length }}

Built-in

{{ builtin_playbooks | length }}

{% if builtin_playbooks %}
Built-in Playbooks
{% for playbook in builtin_playbooks %}
{{ playbook.name }}

{{ playbook.description }}

Built-in Execute
{% endfor %}
{% endif %}
Custom Playbooks
{% if playbooks %} {% for playbook in playbooks %}
{{ playbook.name }}

{{ playbook.filename }}

Custom
{% endfor %} {% else %}

No custom playbooks

Create or import one to get started
{% endif %}
Select a playbook to view/edit
Choose from the list on the left

Ansible Playbook Editor

Select a playbook from the left panel to view or edit its content

{% endblock %} {% block extra_js %} {% endblock %}