mirror of https://github.com/snachodog/mybuddy.git
15 lines
448 B
HTML
15 lines
448 B
HTML
{% extends 'error/base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}
|
|
403 {% trans "Permission Denied" %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<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 %}
|