404.html 271 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
{% load i18n %}
{% extends "base.html" %}

{% block title %}{% trans "Page not found" %}{% endblock %}

{% block page_title %}{% trans "Page not found" %}{% endblock page_title %}

{% block content %}
<p>{% trans "This page does not exist." %}</p>
{% endblock content %}