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

20 lines
515 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 %}Secret Bulk Edit{% endblock %}
2016-09-28 17:20:16 -04:00
{% block selected_objects_table %}
<tr>
<th>Device</th>
<th>Role</th>
<th>Name</th>
</tr>
2016-03-01 11:23:03 -05:00
{% for secret in selected_objects %}
<tr>
2016-09-28 17:20:16 -04:00
<td><a href="{% url 'secrets:secret' pk=secret.pk %}">{{ secret.device }}</a></td>
2016-03-01 11:23:03 -05:00
<td>{{ secret.role }}</td>
<td>{{ secret.name }}</td>
</tr>
{% endfor %}
{% endblock %}