init
Some checks failed
Build And Test / build-and-push (push) Failing after 53s

This commit is contained in:
2024-12-13 17:12:03 +09:00
parent a27be94b19
commit ea11832a53
695 changed files with 71766 additions and 1 deletions

View File

@ -0,0 +1,17 @@
{% 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_inventory_content">Inventory content:</label>
{{ form.inventory_content }}
<label for="id_playbook_content">Playbook content:</label>
{{ form.playbook_content }}
<button type="submit" class="btn btn-primary">Create</button>
</form>
{% endblock %}