arrowcounter/counter/templates/404.html
Claudio Maggioni (maggicl) 4848698d63 Added translations in italian
2019-07-27 13:58:09 +02:00

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