mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			396 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			396 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'generic/object_list.html' %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block bulk_buttons %}
 | 
						|
  {% if perms.extras.sync_configtemplate %}
 | 
						|
    <button type="submit" name="_sync" formaction="{% url 'extras:configtemplate_bulk_sync' %}" class="btn btn-primary btn-sm">
 | 
						|
      <i class="mdi mdi-sync" aria-hidden="true"></i> {% trans "Sync Data" %}
 | 
						|
    </button>
 | 
						|
  {% endif %}
 | 
						|
  {{ block.super }}
 | 
						|
{% endblock %}
 |