checkout/src/common/templates/404.html

7 lines
225 B
HTML
Raw Normal View History

2022-04-25 17:35:13 +02:00
{% extends "common/base.html" %}
2022-04-25 23:04:49 +02:00
{% load i18n %}
2022-04-25 17:35:13 +02:00
{% block content %}
2022-04-25 23:04:49 +02:00
<h1>{% translate "Page not found" %}</h1>
<p>{% translate "We tried and tried but couldn't find the page you're looking for." %}</p>
2022-04-25 17:35:13 +02:00
{% endblock %}