pasteque/paste/templates/404.html
Alexandre Henriet b632e8f869 first commit
2013-04-04 19:37:30 +02:00

9 lines
299 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}404 - {% trans 'Not found' %}{% endblock %}
{% block content %}
<h1>404 - {% trans 'Not found' %}</h1>
<div id="notfound">
<p>{% blocktrans %}Sorry but the page you try to access does not exists{% endblocktrans %}.</p>
</div>
{% endblock %}