mirror of https://github.com/snachodog/mybuddy.git
14 lines
381 B
HTML
14 lines
381 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 %}
|