1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #6931: Include applied filters on object list view

This commit is contained in:
jeremystretch
2021-08-10 13:04:50 -04:00
parent 6845fb0f00
commit c7ebad0fbb
5 changed files with 73 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
{% if applied_filters %}
<div class="mb-3">
{% for filter in applied_filters %}
<a href="{{ filter.link_url }}" class="badge rounded-pill bg-primary text-decoration-none me-1">
<i class="mdi mdi-close"></i> {{ filter.link_text }}
</a>
{% endfor %}
</div>
{% endif %}