Files
netbox/netbox/templates/ipam/prefix_list.html
Matthew Papaleo 339ad455e4
Some checks failed
CI / build (20.x, 3.12) (push) Has been cancelled
CI / build (20.x, 3.13) (push) Has been cancelled
CI / build (20.x, 3.14) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Support for max_length and max_depth standardised for prefix_list, aggreate/prefixes and prefix/prefixes
2026-01-21 10:02:06 -05:00

12 lines
340 B
HTML

{% extends 'generic/object_list.html' %}
{% load helpers %}
{% load i18n %}
{% block extra_controls %}
<button class="btn btn-outline-secondary toggle-depth" type="button">
{% trans "Hide Depth Indicators" %}
</button>
{% include 'ipam/inc/max_depth.html' %}
{% include 'ipam/inc/max_length.html' %}
{% endblock %}