mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			555 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			555 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'generic/object_children.html' %}
 | 
						|
{% load helpers %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block extra_controls %}
 | 
						|
  {% if perms.tenancy.add_contactassignment %}
 | 
						|
    {% with viewname=object|viewname:"contacts" %}
 | 
						|
      <a href="{% url 'tenancy:contactassignment_add' %}?content_type={{ object|content_type_id }}&object_id={{ object.pk }}&return_url={% url viewname pk=object.pk %}" class="btn btn-primary btn-sm">
 | 
						|
        <i class="mdi mdi-plus-thick" aria-hidden="true"></i> {% trans "Add a contact" %}
 | 
						|
      </a>
 | 
						|
    {% endwith %}
 | 
						|
  {% endif %}
 | 
						|
{% endblock %}
 |