2016-03-01 11:23:03 -05:00
|
|
|
{% extends 'utilities/bulk_edit_form.html' %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
|
|
|
{% block title %}VRF Bulk Edit{% endblock %}
|
|
|
|
|
2016-09-28 17:20:16 -04:00
|
|
|
{% block selected_objects_table %}
|
|
|
|
<tr>
|
|
|
|
<th>VRF</th>
|
|
|
|
<th>RD</th>
|
|
|
|
<th>Tenant</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% for vrf in selected_objects %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url 'ipam:vrf' pk=vrf.pk %}">{{ vrf.name }}</a></td>
|
|
|
|
<td>{{ vrf.rd }}</td>
|
2016-07-27 11:29:20 -04:00
|
|
|
<td>{{ vrf.tenant }}</td>
|
2016-03-01 11:23:03 -05:00
|
|
|
<td>{{ vrf.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|