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

12 lines
596 B
HTML
Raw Normal View History

2020-01-02 16:29:11 +00:00
{% load helpers %}
{% if show_available is not None %}
<div class="btn-group m-1" role="group">
<a href="{{ request.path }}{% querystring request show_available='true' %}" class="btn btn-sm btn-outline-secondary{% if show_available %} active disabled{% endif %}">
<i class="bi bi-eye-fill"></i> Show Available
2021-03-02 15:58:33 -05:00
</a>
<a href="{{ request.path }}{% querystring request show_available='false' %}" class="btn btn-sm btn-outline-secondary{% if not show_available %} active disabled{% endif %}">
<i class="bi bi-eye-slash-fill"></i> Hide Available
2021-03-02 15:58:33 -05:00
</a>
</div>
2020-01-02 16:29:11 +00:00
{% endif %}