mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			445 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			445 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h1>{% block title %}Import Completed{% endblock %}</h1>
 | 
						|
    {% include 'responsive_table.html' %}
 | 
						|
    <a href="{{ request.path }}" class="btn btn-primary">
 | 
						|
        <span class="mdi mdi-database-import-outline" aria-hidden="true"></span>
 | 
						|
        Import more
 | 
						|
    </a>
 | 
						|
    {% if return_url %}
 | 
						|
        <a href="{{ return_url }}" class="btn btn-default">View All</a>
 | 
						|
    {% endif %}
 | 
						|
{% endblock %}
 |