checkout/src/common/templates/404.html
2022-04-25 23:05:17 +02:00

7 lines
225 B
HTML

{% extends "common/base.html" %}
{% load i18n %}
{% block content %}
<h1>{% translate "Page not found" %}</h1>
<p>{% translate "We tried and tried but couldn't find the page you're looking for." %}</p>
{% endblock %}