Closes #9980: Use standard table controls template for device interfaces list

This commit is contained in:
jeremystretch
2022-08-12 11:25:03 -04:00
parent e4fa8af47f
commit ca0b21bef5
3 changed files with 25 additions and 41 deletions

View File

@@ -0,0 +1,11 @@
{% extends 'inc/table_controls_htmx.html' %}
{% block extra_table_controls %}
<button class="btn btn-sm btn-outline-dark dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="mdi mdi-eye"></i>
</button>
<ul class="dropdown-menu">
<button type="button" class="dropdown-item toggle-enabled" data-state="show">Hide Enabled</button>
<button type="button" class="dropdown-item toggle-disabled" data-state="show">Hide Disabled</button>
</ul>
{% endblock extra_table_controls %}