mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
688 B
HTML
26 lines
688 B
HTML
{% extends 'utilities/bulk_edit_form.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}VLAN Bulk Edit{% endblock %}
|
|
|
|
{% block selected_objects_table %}
|
|
<tr>
|
|
<th>VLAN</th>
|
|
<th>Site</th>
|
|
<th>Group</th>
|
|
<th>Tenant</th>
|
|
<th>Status</th>
|
|
<th>Role</th>
|
|
</tr>
|
|
{% for vlan in selected_objects %}
|
|
<tr>
|
|
<td><a href="{% url 'ipam:vlan' pk=vlan.pk %}">{{ vlan }}</a></td>
|
|
<td>{{ vlan.site }}</td>
|
|
<td>{{ vlan.group }}</td>
|
|
<td>{{ vlan.tenant }}</td>
|
|
<td>{{ vlan.get_status_display }}</td>
|
|
<td>{{ vlan.role }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endblock %}
|