9 lines
186 B
HTML
9 lines
186 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans 'Permission Denied' %}</h1>
|
|
{% trans 'Sorry, you have no rights to see this page.' %}
|
|
{% endblock %}
|