12 lines
336 B
HTML
12 lines
336 B
HTML
{% extends "dashboard/base.html" %}
|
|
|
|
{% block title %} - Permission Denied{% endblock %}
|
|
{% block pageclass %}denied{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="page_head">
|
|
<h2 id="page_heading">Permission Denied</h2>
|
|
<p id="page_description">You do not have permission to view the requested page.</p>
|
|
</div>
|
|
{% endblock %}
|