blob: 7e8b25d559eb46a426b741e70e53f2dc785f45a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}
{% load bootstrap4 %}
{% block content %}
<form method="POST" id="step_form" class="form">
{% csrf_token %}
{% bootstrap_field form.name %}
{% bootstrap_field form.description %}
</form>
{% endblock content %}
|