13 lines
432 B
HTML
Executable File
13 lines
432 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Page not found" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="content">
|
|
<h2 class="title">{% blocktrans %}Page not found or insufficient permissions.{% endblocktrans %}</h2>
|
|
<div class="inner">
|
|
<p>{% blocktrans %}Sorry, but the requested page could not be found.{% endblocktrans %}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|