blob: 0cd5f58f44ed60cf39f30d0cd9403ac9d094b976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "site.xml" %}
{% block content %}
{% load crispy_forms_tags %}
<form name="queue_custom_form"
id="queue_custom_form"
method="POST"
action=""
enctype="multipart/form-data">
{{ form|crispy }}
<input type="submit" class="btn btn-success" value="Send job to ansible-queue"/>
</form>
{% endblock %}
|