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

Converted IPAM object lists to ObjectListView

This commit is contained in:
Jeremy Stretch
2016-03-04 11:25:20 -05:00
parent 5796d1f385
commit d7e2acbae6
8 changed files with 50 additions and 161 deletions

View File

@@ -2,7 +2,7 @@
{% if perms.ipam.change_vrf or perms.ipam.delete_vrf %}
<form method="post" class="form form-horizontal">
{% csrf_token %}
{% render_table vrf_table 'table.html' %}
{% render_table table table_template|default:'table.html' %}
{% if perms.ipam.change_vrf %}
<button type="submit" name="_edit" formaction="{% url 'ipam:vrf_bulk_edit' %}" class="btn btn-warning btn-sm">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
@@ -17,5 +17,5 @@
{% endif %}
</form>
{% else %}
{% render_table vrf_table 'table.html' %}
{% render_table table table_template|default:'table.html' %}
{% endif %}