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

18 lines
438 B
HTML
Raw Normal View History

2016-07-28 15:30:29 -04:00
{% extends 'utilities/bulk_edit_form.html' %}
{% load form_helpers %}
{% block title %}Site Bulk Edit{% endblock %}
2016-09-28 17:20:16 -04:00
{% block selected_objects_table %}
<tr>
<th>Site</th>
<th>Tenant</th>
</tr>
2016-07-28 15:30:29 -04:00
{% for site in selected_objects %}
<tr>
<td><a href="{% url 'dcim:site' slug=site.slug %}">{{ site }}</a></td>
2016-07-28 15:30:29 -04:00
<td>{{ site.tenant }}</td>
</tr>
{% endfor %}
{% endblock %}