summaryrefslogtreecommitdiff
path: root/src/caas/templates/pushbutton.xml
blob: bc51019d6de8e060c4e503281c9b474f1c183041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "site.xml" %}
{% block content %}
{% load crispy_forms_tags %}
<form name="push_button_form"
      id="push_button_form"
      method="POST"
      action=""
      enctype="multipart/form-data">
{{ form|crispy }}
<input type="submit" class="btn btn-success" value="Make it so"/>
</form>
{% endblock %}