graphPaname/app/templates/data.html

13 lines
236 B
HTML
Raw Permalink Normal View History

2020-06-12 20:03:25 +02:00
{% extends "base.html" %}
2020-06-12 22:49:49 +02:00
{% import 'bootstrap/wtf.html' as wtf %}
2020-06-12 20:03:25 +02:00
2020-06-12 22:49:49 +02:00
{% block app_content %}
<h1>Select a dataset</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
<br>
2020-06-12 20:03:25 +02:00
{% endblock %}