This commit is contained in:
17
ansible_manager/templates/ansible_manager/create_job.html
Normal file
17
ansible_manager/templates/ansible_manager/create_job.html
Normal 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 %}
|
Reference in New Issue
Block a user