Add table querying via form

This commit is contained in:
2020-01-09 19:13:24 +01:00
parent 6caca22472
commit 1aac68473d
12 changed files with 141 additions and 42 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Table selection</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
<br>
{% endblock %}