mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			395 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			395 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% load i18n %}
 | |
| {% load inventree_extras %}
 | |
| 
 | |
| {% block page_title %}
 | |
| {% inventree_title %} | {% trans "Page Not Found" %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
| <div class='container-fluid'>
 | |
|     <h3>{% trans "Page Not Found" %}</h3>
 | |
| 
 | |
|     <div class='alert alert-danger alert-block'>
 | |
|         {% trans "The requested page does not exist" %}
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| {% endblock %} |