2021-03-29 16:43:29 -04:00
{% extends 'ipam/prefix/base.html' %}
2021-08-31 11:15:41 -04:00
{% load helpers %}
{% load static %}
2021-03-29 16:43:29 -04:00
2021-04-30 12:13:43 -07:00
{% block extra_controls %}
{% if perms.ipam.add_ipaddress and active_tab == 'ip-addresses' and first_available_ip %}
2021-08-03 10:03:22 -07:00
< 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-sm btn-primary" >
2021-07-20 13:46:59 -04:00
< i class = "mdi mdi-plus-thick" aria-hidden = "true" > < / i > Add IP Address
2021-04-30 12:13:43 -07:00
< / a >
{% endif %}
{% endblock %}
2021-03-29 16:43:29 -04:00
{% block content %}
< div class = "row" >
2021-04-30 15:55:37 -07:00
< div class = "col col-md-12" >
2021-08-31 11:15:41 -04:00
{% include 'inc/table_controls.html' with table_modal="IPAddressTable_config" %}
2021-08-10 16:26:14 -04:00
{% include 'utilities/obj_table.html' with heading='IP Addresses' bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
2021-03-29 16:43:29 -04:00
< / div >
< / div >
2021-08-31 11:15:41 -04:00
{% table_config_form table table_name="IPAddressTable" %}
{% endblock %}