mirror of https://github.com/snachodog/mybuddy.git
13 lines
376 B
HTML
13 lines
376 B
HTML
{% extends 'error/base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}404 {% trans "Page Not Found" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>404 {% trans "Page Not Found" %}</h1>
|
|
<div>
|
|
{% blocktrans trimmed with request_path=request_path %}
|
|
The path <code>{{ request_path }}</code> does not exist.
|
|
{% endblocktrans %}
|
|
</div>
|
|
{% endblock %} |