This commit is contained in:
Ross
2021-08-31 18:03:20 +01:00
parent cc626faf04
commit bce7420b7a
5 changed files with 167 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
{% extends 'sbas/base.html' %}
{% load render_table from django_tables2 %}
{% block css %}
{% endblock %}
{% block content %}
<div id="view-filter-options">
<h3>Filter SBA Questions</h3>
<form action="" method="get">
{{ filter.form }}
<input class="btn btn-primary btn-sm mt-1 mb-1" type="submit" />
</form>
</div>
{% render_table table %}
{% endblock %}