mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'utilities/bulk_edit_form.html' %}
 | 
						|
{% load form_helpers %}
 | 
						|
 | 
						|
{% block title %}Tenant Bulk Edit{% endblock %}
 | 
						|
 | 
						|
{% block select_objects_table %}
 | 
						|
    {% 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 %}
 |