Files

14 lines
421 B
HTML

{% extends "dav_base/error_base.html" %}
{% load i18n %}
{% block error-code %}404{% endblock %}
{% block error-title %}Not Found{% 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 %}