mybuddy/babybuddy/templates/error/404.html

14 lines
381 B
HTML
Raw Normal View History

2022-02-22 16:31:14 +00:00
{% extends 'error/base.html' %}
{% load i18n %}
{% block title %}
404 {% trans "Page Not Found" %}
{% endblock %}
2022-02-22 16:31:14 +00:00
{% block content %}
<h1>404 {% trans "Page Not Found" %}</h1>
<div>
{% blocktrans trimmed with request_path=request_path %}
2022-02-23 13:48:15 +00:00
The path <code>{{ request_path }}</code> does not exist.
2022-02-22 16:31:14 +00:00
{% endblocktrans %}
</div>
{% endblock %}