Files
butler_ddochi/ansible_manager/templates/ansible_manager/create_job.html
icurfer 0b0343d8ce
All checks were successful
Build And Test / build-and-push (push) Successful in 4m22s
ansible form 순서 수정
2025-04-09 11:16:54 +09:00

18 lines
473 B
HTML

{% extends "components/base.html" %}
{% block main_area %}
<h1>Create Ansible Job</h1>
<form method="POST">
{% csrf_token %}
<label for="id_name">Name:</label>
{{ form.name }}
<label for="id_playbook_content">Playbook content:</label>
{{ form.playbook_content }}
<label for="id_inventory_content">Inventory content:</label>
{{ form.inventory_content }}
<button type="submit" class="btn btn-primary">Create</button>
</form>
{% endblock %}