mybuddy/babybuddy/templates/error/403.html

15 lines
448 B
HTML
Raw Normal View History

2022-02-22 16:31:14 +00:00
{% extends 'error/base.html' %}
{% load i18n %}
{% block title %}
403 {% trans "Permission Denied" %}
{% endblock %}
{% block content %}
2022-02-22 16:31:14 +00:00
<h1>403 {% trans "Permission Denied" %}</h1>
<div class="alert alert-danger" role="alert">
{% blocktrans trimmed %}
You do not have permission to access this resource. Contact a site
administrator for assistance.
{% endblocktrans %}
</div>
{% endblock %}