mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
453 B
HTML
18 lines
453 B
HTML
{% extends 'utilities/bulk_edit_form.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}Tenant Bulk Edit{% endblock %}
|
|
|
|
{% block selected_objects_table %}
|
|
<tr>
|
|
<th>Tenant</th>
|
|
<th>Group</th>
|
|
</tr>
|
|
{% for tenant in selected_objects %}
|
|
<tr>
|
|
<td><a href="{% url 'tenancy:tenant' slug=tenant.slug %}">{{ tenant }}</a></td>
|
|
<td>{{ tenant.group }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endblock %}
|