mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
22 lines
558 B
HTML
22 lines
558 B
HTML
{% extends 'utilities/bulk_edit_form.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}VRF Bulk Edit{% endblock %}
|
|
|
|
{% block selected_objects_table %}
|
|
<tr>
|
|
<th>VRF</th>
|
|
<th>RD</th>
|
|
<th>Tenant</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
{% for vrf in selected_objects %}
|
|
<tr>
|
|
<td><a href="{% url 'ipam:vrf' pk=vrf.pk %}">{{ vrf.name }}</a></td>
|
|
<td>{{ vrf.rd }}</td>
|
|
<td>{{ vrf.tenant }}</td>
|
|
<td>{{ vrf.description }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endblock %}
|