This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-07-08 12:17:29 +00:00
|
|
|
{% extends 'login/base_full.html' %}
|
2018-12-11 14:29:58 +00:00
|
|
|
|
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2018-12-11 14:29:58 +00:00
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
{% block card_title %}
|
|
|
|
{% trans 'Permission denied' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-07-08 12:17:29 +00:00
|
|
|
{% block title %}
|
|
|
|
{% trans 'Permission denied' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block card %}
|
|
|
|
<form method="POST" class="pf-c-form">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% include 'partials/form.html' %}
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<p>
|
|
|
|
<i class="pf-icon pf-icon-error-circle-o"></i>
|
|
|
|
{% trans 'Access denied' %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% if 'back' in request.GET %}
|
|
|
|
<a href="{% back %}" class="btn btn-primary btn-block btn-lg">{% trans 'Back' %}</a>
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
2018-12-11 14:29:58 +00:00
|
|
|
{% endblock %}
|