This commit is contained in:
Ross
2021-12-11 22:29:41 +00:00
parent 3d9c019bdc
commit c621e316cf
6 changed files with 72 additions and 45 deletions
@@ -0,0 +1,21 @@
{% extends 'base.html' %}
{% load render_table from django_tables2 %}
{% block css %}
{% endblock %}
{% block content %}
<div id="view-filter-options">
<h3>Filter CID Users </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 %}
{% block js %}
{% endblock %}