We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d6c866 + 016fc93 commit 2f3ec3bCopy full SHA for 2f3ec3b
templates/403.html
@@ -0,0 +1,17 @@
1
+{% extends "base_site.html" %}
2
+{% load i18n %}
3
+
4
+{% block title %}403 - {{ block.super }}{% endblock %}
5
6
+{% block content %}
7
+<section>
8
+ <div class="row">
9
+ <div class="col-md-12" style="margin-top: 20px">
10
+ <div class="alert alert-danger">
11
+ <h4>{% trans "Access Denied" %}</h4>
12
+ <p>{% trans "You are not authorized to view this page." %}</p>
13
+ </div>
14
15
16
+</section>
17
+{% endblock %}
0 commit comments