18 lines
473 B
HTML
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_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 %}
|