igdb/code/app/templates/table_selection.html

13 lines
235 B
HTML
Raw Normal View History

2020-01-09 19:13:24 +01:00
{% 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 %}