2020-02-13 17:22:17 -05:00
|
|
|
{% extends 'utilities/obj_list.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
{% load helpers %}
|
|
|
|
|
2020-02-13 17:22:17 -05:00
|
|
|
{% block buttons %}
|
2017-04-20 13:07:22 -04:00
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<a href="{% url 'ipam:prefix_list' %}{% querystring request expand=None page=1 %}" class="btn btn-default{% if not request.GET.expand %} active{% endif %}">Collapse</a>
|
|
|
|
<a href="{% url 'ipam:prefix_list' %}{% querystring request expand='on' page=1 %}" class="btn btn-default{% if request.GET.expand %} active{% endif %}">Expand</a>
|
|
|
|
</div>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endblock %}
|