1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/templates/403.html

12 lines
285 B
HTML
Raw Normal View History

2021-09-07 20:40:26 +02:00
{% extends "base.html" %}
{% load i18n %}
2021-09-07 20:40:26 +02:00
{% load urls %}
{% block mainpage %}
<h1>{% translate "Permission Denied" %}</h1>
{% main_url as url %}
<p>{% blocktrans %}You might want to go back to the <a href="{{ url }}">homepage</a>.{% endblocktrans %}</p>
2021-09-07 20:40:26 +02:00
{% endblock %}