mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	* Clean up & comment base templates * Clean up login template & form * Use SVG file for NetBox logo * Simplify breadcrumbs * Merge changelog.html into home.html * Rename title_container block to header * Move breadcrumbs block to object.html * Attach names to endblock template tags * Reorganize root-level templates into base/ and inc/ * Remove obsolete reference to Bootstrap 3.4.1
		
			
				
	
	
		
			22 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base/layout.html' %}
 | 
						|
 | 
						|
{% block title %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="row my-5">
 | 
						|
    <div class="col-6 offset-3">
 | 
						|
        <div class="card">
 | 
						|
            <h5 class="card-header text-danger">
 | 
						|
                {{ request_path }}
 | 
						|
            </h5>
 | 
						|
            <div class="card-body">
 | 
						|
                {% block message %}{% endblock %}
 | 
						|
            </div>
 | 
						|
            <div class="card-footer text-end">
 | 
						|
                <a href="{% url 'home' %}" class="btn btn-sm btn-primary">Home Page</a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |