checkout/src/common/templates/403.html

7 lines
202 B
HTML
Raw Normal View History

2022-04-25 17:30:49 +02:00
{% extends "common/base.html" %}
2022-04-25 23:04:49 +02:00
{% load i18n %}
2022-04-25 17:30:49 +02:00
{% block content %}
2022-04-25 23:04:49 +02:00
<h1>{% translate "Permission denied" %}</h1>
<p>{% translate "You're not allowed to access this page." %}</p>
2022-04-25 17:30:49 +02:00
{% endblock %}