mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-01 02:14:51 +00:00
12 lines
305 B
HTML
12 lines
305 B
HTML
|
|
{% extends "admin/base_site.html" %}
|
|||
|
|
{% load i18n %}
|
|||
|
|
{% block title %}
|
|||
|
|
{% translate 'Page not found' %}
|
|||
|
|
{% endblock %}
|
|||
|
|
{% block content %}
|
|||
|
|
<h2>{% translate 'Page not found' %}</h2>
|
|||
|
|
<p>
|
|||
|
|
{% translate 'We’re sorry, but the requested page could not be found.' %}
|
|||
|
|
</p>
|
|||
|
|
{% endblock %}
|