blob: b6a17a97edd0a91165652326ef9421671034a4e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}
{% load bootstrap4 %}
{% block content %}
<form id="step_form" method="post">
{% csrf_token %}
<table class="px-4">
{% bootstrap_form form field_class="px-4" label_class="px-4 mt-2" %}
</table>
</form>
{% endblock content %}
|