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