use crispy-forms to render filter

This commit is contained in:
Andreas Zweili 2020-02-29 12:02:07 +01:00
parent 42ecb7f5dd
commit c9e5963c07
1 changed files with 2 additions and 1 deletions

View File

@ -1,12 +1,13 @@
{% extends "core/base.html" %}
{% load render_table from django_tables2 %}
{% load crispy_forms_tags %}
{% block section_title %}List of Computers{% endblock %}
{% block content %}
<p>
<form action="" method="get" class="form form-inline">
{% csrf_token %}
{{ filter.form.as_p }}
{{ filter.form|crispy }}
<input type="submit" value="Filter" class="btn btn-primary">
</form>
</p>