2020-11-11 16:58:29 -05:00
|
|
|
{% extends 'generic/object_list.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
{% load helpers %}
|
|
|
|
|
2021-04-18 16:42:28 -07:00
|
|
|
{% block extra_controls %}
|
2021-08-18 14:46:49 -07:00
|
|
|
<button class="btn btn-sm btn-outline-secondary toggle-depth" type="button">
|
|
|
|
Hide Depth Indicators
|
|
|
|
</button>
|
2021-08-03 10:03:22 -07:00
|
|
|
<div class="dropdown">
|
2021-06-02 20:35:38 -04:00
|
|
|
<button class="btn btn-sm btn-outline-secondary dropdown-toggle" type="button" id="max_depth" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
|
|
|
Max Depth{% if "depth__lte" in request.GET %}: {{ request.GET.depth__lte }}{% endif %}
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="max_depth">
|
|
|
|
{% if request.GET.depth__lte %}
|
|
|
|
<li>
|
|
|
|
<a class="dropdown-item" href="{% url 'ipam:prefix_list' %}{% querystring request depth__lte=None page=1 %}">Clear</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% for i in 16|as_range %}
|
|
|
|
<li><a class="dropdown-item" href="{% url 'ipam:prefix_list' %}{% querystring request depth__lte=i page=1 %}">
|
|
|
|
{{ i }} {% if request.GET.depth__lte == i %}<i class="mdi mdi-check-bold"></i>{% endif %}
|
|
|
|
</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2021-05-27 13:24:31 -04:00
|
|
|
</div>
|
2021-08-03 10:03:22 -07:00
|
|
|
<div class="dropdown">
|
2021-04-18 16:42:28 -07:00
|
|
|
<button class="btn btn-sm btn-outline-secondary dropdown-toggle" type="button" id="max_length" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
|
|
|
Max Length{% if "mask_length__lte" in request.GET %}: {{ request.GET.mask_length__lte }}{% endif %}
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="max_length">
|
2021-04-27 14:05:38 -04:00
|
|
|
{% if request.GET.mask_length__lte %}
|
|
|
|
<li>
|
|
|
|
<a class="dropdown-item" href="{% url 'ipam:prefix_list' %}{% querystring request mask_length__lte=None page=1 %}">Clear</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2021-04-18 16:42:28 -07:00
|
|
|
{% for i in "4,8,12,16,20,24,28,32,40,48,56,64"|split %}
|
|
|
|
<li><a class="dropdown-item" href="{% url 'ipam:prefix_list' %}{% querystring request mask_length__lte=i page=1 %}">
|
|
|
|
{{ i }} {% if request.GET.mask_length__lte == i %}<i class="mdi mdi-check-bold"></i>{% endif %}
|
|
|
|
</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2017-04-20 13:07:22 -04:00
|
|
|
</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endblock %}
|