1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
netbox-community-netbox/netbox/templates/ipam/prefix_ipaddresses.html

13 lines
471 B
HTML
Raw Normal View History

2016-03-01 11:23:03 -05:00
{% extends '_base.html' %}
2017-08-02 13:15:28 -04:00
{% block title %}{{ prefix }} - IP Addresses{% endblock %}
2016-03-01 11:23:03 -05:00
{% block content %}
{% include 'ipam/inc/prefix_header.html' with active_tab='ip-addresses' %}
<div class="row">
<div class="col-md-12">
{% include 'utilities/obj_table.html' with table=ip_table table_template='panel_table.html' heading='IP Addresses' bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
2016-03-01 11:23:03 -05:00
</div>
</div>
{% endblock %}