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

12 lines
309 B
Text
Raw Permalink Normal View History

2021-10-15 21:47:49 +02:00
{% extends "base.jinja" %}
{% load i18n %}
2022-07-07 10:05:13 +02:00
{#{% load urls %}#}
2021-09-07 20:40:26 +02:00
{% block mainpage %}
<h1>{% translate "Permission Denied" %}</h1>
2022-07-07 10:05:13 +02:00
{# {% main_url as url %}#}
<p>{% blocktrans %}You might want to go back to the <a href="https://rpgnotes.lw1.at/">homepage</a>.{% endblocktrans %}</p>
2021-09-07 20:40:26 +02:00
{% endblock %}