From efbbd480ddc62e695123d31c31d233b0df5155bd Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 13 May 2024 17:26:25 +0100 Subject: After first pre-commit processing --- pyblackbird_cc/templates/403_csrf.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyblackbird_cc/templates/403_csrf.html (limited to 'pyblackbird_cc/templates/403_csrf.html') diff --git a/pyblackbird_cc/templates/403_csrf.html b/pyblackbird_cc/templates/403_csrf.html new file mode 100644 index 0000000..40954bb --- /dev/null +++ b/pyblackbird_cc/templates/403_csrf.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block title %} + Forbidden (403) +{% endblock title %} +{% block content %} +

Forbidden (403)

+

+ {% if exception %} + {{ exception }} + {% else %} + You're not allowed to access this page. + {% endif %} +

+{% endblock content %} -- cgit v1.2.3