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/ipaddress_bulk_edit.html

26 lines
913 B
HTML
Raw Normal View History

2016-03-01 11:23:03 -05:00
{% extends 'utilities/bulk_edit_form.html' %}
{% load form_helpers %}
{% block title %}IP Address Bulk Edit{% endblock %}
2016-09-28 17:20:16 -04:00
{% block selected_objects_table %}
<tr>
<th>IP Address</th>
<th>VRF</th>
<th>Tenant</th>
<th>Status</th>
2016-09-28 17:20:16 -04:00
<th>Assigned</th>
<th>Description</th>
</tr>
2016-03-01 11:23:03 -05:00
{% for ipaddress in selected_objects %}
<tr>
<td><a href="{% url 'ipam:ipaddress' pk=ipaddress.pk %}">{{ ipaddress }}</a></td>
<td>{{ ipaddress.vrf|default:"Global" }}</td>
<td>{{ ipaddress.tenant }}</td>
<td>{{ ipaddress.get_status_display }}</td>
2016-09-28 17:20:16 -04:00
<td>{% if ipaddress.interface %}<i class="glyphicon glyphicon-ok text-success" title="{{ ipaddress.interface.device }} {{ ipaddress.interface }}"></i>{% endif %}</td>
2016-03-01 11:23:03 -05:00
<td>{{ ipaddress.description }}</td>
</tr>
{% endfor %}
{% endblock %}