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

{% 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 %}