From 9c38f1a670b772d128d6c9dddb4205978811c608 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 31 Jul 2020 12:32:06 +0000 Subject: [PATCH] Added a custom 403 page, extending the datatracker base.html template. - Legacy-Id: 18331 --- ietf/templates/403.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ietf/templates/403.html diff --git a/ietf/templates/403.html b/ietf/templates/403.html new file mode 100644 index 000000000..8acf070f1 --- /dev/null +++ b/ietf/templates/403.html @@ -0,0 +1,21 @@ +{# Copyright The IETF Trust 2007, All Rights Reserved #} +{% extends "base.html" %} +{% load static %} +{% block title %}404 Not Found{% endblock %} +{% block content %} + + +
+ +

Restricted Access.

+ + +

The page you tried to reach is not generally avaiable.

+ +

{{ exception }}

+ +

If you think this is a server error, please contact {{ bugreport_email }}.

+ +
+{% endblock %} +