12 lines
196 B
HTML
12 lines
196 B
HTML
|
{% extends "blarg/views/templates/base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="page-header">
|
||
|
<h2>Unauthorized</h2>
|
||
|
</div>
|
||
|
|
||
|
<p>You are not authorized to view that resource.</p>
|
||
|
|
||
|
{% endblock %}
|