arrowcounter/counter/templates/404.html

16 lines
362 B
HTML
Raw Permalink Normal View History

2018-08-10 11:26:45 +00:00
{% extends "base.html" %}
2019-07-27 11:58:09 +00:00
{% load i18n %}
{% block title %}{% trans "Page not found" %}{% endblock %}
2018-08-10 11:26:45 +00:00
{% block content %}
2019-07-27 11:58:09 +00:00
<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>
2018-08-10 11:26:45 +00:00
{% endblock %}