mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-03 22:55:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			373 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			373 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block page_title %}
 | 
						|
InvenTree | {% trans "Permission Denied" %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
 | 
						|
<div class='container-fluid'>
 | 
						|
    <h3>{% trans "Permission Denied" %}</h3>
 | 
						|
 | 
						|
    <div class='alert alert-danger alert-block'>
 | 
						|
        {% trans "You do not have permission to view this page." %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %} |