2021-03-29 16:43:29 -04:00
{% extends 'ipam/prefix/base.html' %}
2021-08-13 15:56:14 -04:00
{% load helpers %}
{% load static %}
2021-03-29 16:43:29 -04:00
{% block buttons %}
{% include 'ipam/inc/toggle_available.html' %}
2021-08-13 15:56:14 -04:00
{% if request.user.is_authenticated and table_config_form %}
< button type = "button" class = "btn btn-default" data-toggle = "modal" data-target = "#PrefixDetailTable_config" title = "Configure table" > < i class = "mdi mdi-cog" > < / i > Configure< / button >
{% endif %}
2021-03-29 16:43:29 -04:00
{% if perms.ipam.add_prefix and active_tab == 'prefixes' and first_available_prefix %}
< a href = "{% url 'ipam:prefix_add' %}?prefix={{ first_available_prefix }}&vrf={{ object.vrf.pk }}&site={{ object.site.pk }}&tenant_group={{ object.tenant.group.pk }}&tenant={{ object.tenant.pk }}" class = "btn btn-success" >
< i class = "mdi mdi-plus-thick" aria-hidden = "true" > < / i > Add Child Prefix
< / a >
{% endif %}
{% if perms.ipam.add_ipaddress and active_tab == 'ip-addresses' and first_available_ip %}
< a href = "{% url 'ipam:ipaddress_add' %}?address={{ first_available_ip }}&vrf={{ object.vrf.pk }}&tenant_group={{ object.tenant.group.pk }}&tenant={{ object.tenant.pk }}" class = "btn btn-success" >
< span class = "mdi mdi-plus-thick" aria-hidden = "true" > < / span >
Add an IP Address
< / a >
{% endif %}
{{ block.super }}
{% endblock %}
{% block content %}
< div class = "row" >
2021-04-30 15:55:37 -07:00
< div class = "col col-md-12" >
2021-08-10 16:26:14 -04:00
{% include 'utilities/obj_table.html' with heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' parent=prefix %}
2021-03-29 16:43:29 -04:00
< / div >
< / div >
2021-08-13 15:56:14 -04:00
{% table_config_form prefix_table table_name="PrefixDetailTable" %}
{% endblock %}
{% block javascript %}
< script src = "{% static 'js/tableconfig.js' %}" > < / script >
2021-03-29 16:43:29 -04:00
{% endblock %}