1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

26 lines
688 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 %}VLAN Bulk Edit{% endblock %}
2016-09-28 17:20:16 -04:00
{% block selected_objects_table %}
<tr>
<th>VLAN</th>
<th>Site</th>
<th>Group</th>
<th>Tenant</th>
<th>Status</th>
<th>Role</th>
</tr>
2016-03-01 11:23:03 -05:00
{% for vlan in selected_objects %}
<tr>
2016-09-28 17:20:16 -04:00
<td><a href="{% url 'ipam:vlan' pk=vlan.pk %}">{{ vlan }}</a></td>
2016-03-01 11:23:03 -05:00
<td>{{ vlan.site }}</td>
2016-09-28 17:20:16 -04:00
<td>{{ vlan.group }}</td>
2016-07-27 11:29:20 -04:00
<td>{{ vlan.tenant }}</td>
<td>{{ vlan.get_status_display }}</td>
2016-03-01 11:23:03 -05:00
<td>{{ vlan.role }}</td>
</tr>
{% endfor %}
{% endblock %}