mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-20 10:51:52 +00:00
13 lines
351 B
HTML
13 lines
351 B
HTML
{% extends "oscar/error.html" %}
|
|
{% load i18n %}
|
|
{% block title %}
|
|
{% trans 'Page not found' %} | {{ block.super }}
|
|
{% endblock %}
|
|
{% block error_heading %}
|
|
{% trans "Page not found!" %}
|
|
{% endblock %}
|
|
{% block error_message %}
|
|
<p>
|
|
{% trans "We're sorry but the page you are looking for can't be found." %}
|
|
</p>
|
|
{% endblock %}
|