17 lines
499 B
HTML
17 lines
499 B
HTML
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Oops, sorry, forbidden access (403)" %}{% endblock %}
|
|
{% block pagetitle %}<span style="color:red">{% trans "Oops, sorry, forbidden access (403)" %}</span>{% endblock %}
|
|
{% block content %}
|
|
<p>{% trans "Unfortunately, you do not have rights to access this url." %}</p>
|
|
<style>
|
|
.rug-breadcrumbs {
|
|
display:none
|
|
}
|
|
|
|
.rug-layout__item.rug-width-m-8-24 {
|
|
display:none
|
|
}
|
|
</style>
|
|
{% endblock %} |