2016-03-01 11:23:03 -05:00
|
|
|
{% extends 'utilities/bulk_edit_form.html' %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
|
|
|
{% block title %}IP Address Bulk Edit{% endblock %}
|
|
|
|
|
|
|
|
{% block select_objects_table %}
|
|
|
|
{% for ipaddress in selected_objects %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url 'ipam:ipaddress' pk=ipaddress.pk %}">{{ ipaddress }}</a></td>
|
2016-07-28 13:50:46 -04:00
|
|
|
<td>{{ ipaddress.vrf|default:"Global" }}</td>
|
|
|
|
<td>{{ ipaddress.tenant }}</td>
|
2016-03-01 11:23:03 -05:00
|
|
|
<td>{{ ipaddress.interface.device }}</td>
|
|
|
|
<td>{{ ipaddress.interface }}</td>
|
|
|
|
<td>{{ ipaddress.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|