2018-05-20 21:40:09 +00:00
|
|
|
{% extends 'babybuddy/page.html' %}
|
2019-04-14 04:50:35 +00:00
|
|
|
{% load i18n widget_tweaks %}
|
2018-05-20 21:40:09 +00:00
|
|
|
|
2019-04-14 04:50:35 +00:00
|
|
|
{% block title %}403 {% trans "Permission Denied" %}{% endblock %}
|
2018-05-20 21:40:09 +00:00
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2019-04-14 04:50:35 +00:00
|
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans "Permission Denied" %}</li>
|
2018-05-20 21:40:09 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="alert alert-danger" role="alert">
|
2020-01-24 04:00:32 +00:00
|
|
|
{% blocktrans trimmed %}
|
|
|
|
You do not have permission to access this resource. Contact a site
|
|
|
|
administrator for assistance.
|
|
|
|
{% endblocktrans %}
|
2018-05-20 21:40:09 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|