From 6665765b8372ed2ef7a4a2b2b94b8c603cc8b38c Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 11 Mar 2026 12:28:43 +0100 Subject: [PATCH] feat(templates/403.html): add template for 403 --- kursy/templates/403.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 kursy/templates/403.html diff --git a/kursy/templates/403.html b/kursy/templates/403.html new file mode 100644 index 0000000..1237037 --- /dev/null +++ b/kursy/templates/403.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block title %}Page not found{% endblock %} + +{% block body_class %}template-403{% endblock %} + +{% block content %} +
+

{% trans "Forbidden" %}

+ +

{% trans "Sorry, you don't have permission to access this page." %}

+
+{% endblock %}