add favicon, reverse page titles
[redakcja.git] / redakcja / templates / 404.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{% trans "Page not found" %}{% endblock %}
5
6 {% block content %}
7
8 <h1>{% trans "Page not found" %}</h1>
9
10 {% blocktrans with p=request.build_absolute_uri %}The page you're trying
11 to reach (<tt>{{p}}</tt>) could not be found. If it's a document, try
12 looking for it on the <a href="/">document list</a>.{% endblocktrans %}
13
14 <p>
15 {% blocktrans with m="mailto:radoslaw.czajka@nowoczesnapolska.org.pl" %}If you
16 still can't find what you're looking for, please
17 <a href="{{m}}">contact the administrator</a>.{% endblocktrans %}
18 </p>
19
20 {% url "catalogue_user" as m %}
21 <p>
22 {% blocktrans %}If you're coming from Redmine, please note that
23 work is no longer managed there. 
24 Go to the <a href="/">document list</a>
25 or to <a href="{{m}}">your page</a> instead.{% endblocktrans %}
26 </p>
27
28
29 {% endblock content %}