mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
545 B
HTML
17 lines
545 B
HTML
{% 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>
|
|
<td>{{ ipaddress.vrf }}</td>
|
|
<td>{{ ipaddress.interface.device }}</td>
|
|
<td>{{ ipaddress.interface }}</td>
|
|
<td>{{ ipaddress.description }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endblock %}
|