add missing template unauthorized.html. ready for merge

- Legacy-Id: 7213
This commit is contained in:
Ryan Cross 2014-02-06 20:42:44 +00:00
parent 8d56e458d9
commit 913d90b90a

View file

@ -0,0 +1,17 @@
{% extends "base_site.html" %}
{% block title %}Unauthorized{% endblock %}
{% block content %}
<H2>Unauthorized</h2>
<h3>
{% if user_name %}
Sorry, {{ user_name }}, you are not authorized{% if group_name %} to access Group: {{ group_name }}{% else %} to access this page.{% endif %}
{% else %}
<p>Login invalid</p>
{% endif %}
</h3>
{% endblock %}