mpeltriaux
870d822c3a
* fixes GDALException in case of provided feature (import) without geometry content * modifies 500.html template to inform the user about the admins being informed automatically
13 lines
442 B
HTML
13 lines
442 B
HTML
{% extends 'public_base.html' %}
|
|
{% load i18n fontawesome_5 %}
|
|
|
|
{% block body %}
|
|
<div class="jumbotron">
|
|
<h1 class="display-4">{% fa5_icon 'fire-extinguisher' %} {% fa5_icon 'fire-alt' %} 500</h1>
|
|
<h1 class="display-4">{% trans 'Server Error' %}</h1>
|
|
<hr>
|
|
<p class="lead">
|
|
{% trans 'Something happened. Admins have been informed. We are working on it!' %}
|
|
</p>
|
|
</div>
|
|
{% endblock %} |