mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 21:25:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			473 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			473 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% load i18n %}
 | |
| 
 | |
| {% block page_title %}
 | |
| InvenTree | {% trans "Internal Server Error" %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
| <div class='container-fluid'>
 | |
|     <h3>{% trans "Internal Server Error" %}</h3>
 | |
| 
 | |
|     <div class='alert alert-danger alert-block'>
 | |
|         {% trans "The InvenTree server raised an internal error" %}<br>
 | |
|         {% trans "Refer to the error log in the admin interface for further details" %}
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| {% endblock %} |