Translated using Weblate (Albanian)
[mailman-postorious.git] / src / postorius / templates / 500.html
blobca93fcb21ba14ea378e0644b3a97fb5a1cfa3646
1 {% load i18n %}
2 {% load static %}
3 <!DOCTYPE html>
4 <html lang="en">
5 <head>
6 <meta charset="UTF-8">
7 <meta http-equiv="X-UA-Compatible" content="IE=edge">
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9 <title>Server Error</title>
10 <link rel="shortcut icon" href="{% static 'postorius/img/favicon.ico' %}">
11 <link rel="stylesheet" href="{% static 'postorius/libs/bootstrap/css/bootstrap.min.css' %}">
12 <link rel="stylesheet" href="{% static 'django-mailman3/css/main.css' %}">
13 <link rel="stylesheet" href="{% static 'postorius/css/style.css' %}">
14 {% block additionalcss %}{% endblock %}
15 </head>
16 <body>
17 <div class="container">
18 <h1>{% trans 'Server error' %}</h1>
19 <div class="alert alert-danger">{% trans "An error occurred while processing your request." %}</div>
20 </div>
21 </body>
22 </html>