15 lines
362 B
HTML
15 lines
362 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Page not found" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="center">{% trans "Page not found" %}</h1>
|
|
<p>
|
|
{% url "index" as link %}
|
|
{% blocktrans with link=link %}
|
|
This page has not been found. Please <a href="{{ link }}">return to the home</a>.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|