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

24 lines
659 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 %}Device Bulk Edit{% endblock %}
2016-09-28 17:20:16 -04:00
{% block selected_objects_table %}
<tr>
<th>Device</th>
<th>Type</th>
<th>Role</th>
<th>Tenant</th>
<th>Serial</th>
</tr>
2016-03-01 11:23:03 -05:00
{% for device in selected_objects %}
<tr>
<td><a href="{% url 'dcim:device' pk=device.pk %}">{{ device }}</a></td>
<td>{{ device.device_type.full_name }}</td>
2016-03-01 11:23:03 -05:00
<td>{{ device.device_role }}</td>
<td>{{ device.tenant }}</td>
2016-03-01 11:23:03 -05:00
<td>{{ device.serial }}</td>
</tr>
{% endfor %}
{% endblock %}