blob: 5c613c413b5fcff81daf54983b51a9da37d1f057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends 'base.html' %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Add Dataset</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}
|