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