13 lines
		
	
	
		
			279 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			279 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'layout.html' %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block title %}{% trans "Oops!" %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="block">
 | 
						|
    <h1 class="title">{% trans "Server Error" %}</h1>
 | 
						|
    <p>{% trans "Something went wrong! Sorry about that." %}</p>
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 |