src/ldt/ldt/templates/404.html
author cavaliet
Mon, 26 Aug 2013 16:31:50 +0200
changeset 1228 24c4023ded2f
parent 1187 73403060f297
permissions -rw-r--r--
add links to modules if possible and version number to 1.51.2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
859
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     1
{% extends "ldt/ldt_base.html" %}
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     2
{% load i18n %}
1187
73403060f297 remove absstatic and goes back to static
ymh <ymh.work@gmail.com>
parents: 995
diff changeset
     3
{% load static %}
859
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     4
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     5
{% block content %}
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     6
<div style="text-align:center;vertical-align:middle;">
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     7
	<h1>{% trans '404 error' %}</h1>
1187
73403060f297 remove absstatic and goes back to static
ymh <ymh.work@gmail.com>
parents: 995
diff changeset
     8
	<img src='{% static "ldt/img/404_gandalf.gif" %}' alt="Gif 404" style="display:block;margin:auto;vertical-align:middle;"/>
859
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
     9
	<br>
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
    10
	<h1>{% trans "Sorry, we couldn't find your page" %}</h1>
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
    11
</div>
cc6b53f3577d Creation of error pages 404, 403, 500
grandjoncl
parents: 22
diff changeset
    12
{% endblock %}