mybuddy/babybuddy/templates/error/404.html

13 lines
376 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 %}
{% block content %}
<h1>404 {% trans "Page Not Found" %}</h1>
<div>
{% blocktrans trimmed with request_path=request_path %}
The path <samp>{{ request_path }}</samp> does not exist.
{% endblocktrans %}
</div>
{% endblock %}