FIX: fixed css (space between page header and page body)

This commit is contained in:
2019-03-25 10:54:22 +01:00
parent eebf02b66c
commit 94402fb5d0
24 changed files with 63 additions and 46 deletions

View File

@@ -1,6 +1,13 @@
{% extends "dav_base/error_base.html" %}
{% load i18n %}
{% block error-code %}404{% endblock %}
{% block error-title %}Not Found{% endblock %}
{% block error-heading %}Ressource nicht gefunden{% endblock %}
{% block error-body %}<p>{{ exception }}</p>{% endblock %}
{% block error-heading %}{% trans 'Adresse existiert nicht' %}{% endblock %}
{% block error-body %}
<p>
{% blocktrans with path=request.path %}
Die angeforderte Ressource '{{ path }}' ist auf diesem Server nicht verfügbar.
{% endblocktrans %}
</p>
{% endblock %}