mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
21 lines
405 B
HTML
21 lines
405 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "403 Forbidden" %}</h2>
|
|
|
|
<p>
|
|
{% with request_path=request.path %}
|
|
{% blocktrans trimmed %}
|
|
You don't have permission to access {{ request_path }} on this server.
|
|
{% endblocktrans %}
|
|
{% endwith %}
|
|
</p>
|
|
|
|
{% endblock %}
|