X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2f1c330e555c24deb17b7d6018b59c52dab7aafd..f2056dbaafa8f6a5bf72ef25ecf77060693ba35d:/wolnelektury/templates/404.html diff --git a/wolnelektury/templates/404.html b/wolnelektury/templates/404.html index 5003eae87..8083d2865 100644 --- a/wolnelektury/templates/404.html +++ b/wolnelektury/templates/404.html @@ -1,3 +1,19 @@ -<h1>Blad 404 - Strona nie istnieje</h1> +{% extends "base.html" %} +{% load i18n %} -<p>(Tutaj później bÄdzie coÅ wiÄcej, naprawdÄ)</p> \ No newline at end of file + +{% block titleextra %}404 - {% trans "Page does not exist" %}{% endblock %} + + +{% block body %} + +<h1>{% trans "Page not found" %}</h1> + + +<p> +{% trans "We are sorry, but this page does not exist. Please check if you entered correct address or go to "%} <a href="/">{% trans "main page" %}</a>. +</p> + + + +{% endblock body %}