Merged [7213] from rcross@amsl.com: add missing template unauthorized.html.

- Legacy-Id: 7241
Note: SVN reference [7213] has been migrated to Git commit 913d90b90a
This commit is contained in:
Henrik Levkowetz 2014-02-16 16:26:35 +00:00
commit 1b3bbad040

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 %}