Merge with updates from cweiske/master
[phorkie.git] / data / templates / forbidden.htm
1 {% extends "base.htm" %}
2 {% block title %}Access Denied{% endblock %}
3
4 {% block content %}
5
6 <fieldset>
7   <legend>Access Denied</legend>
8   <img src="images/access_denied.png" align='left'>
9   <p>We're sorry, your identity is not authorized:</p>
10   <p><code>{{ identity }}</code></p>
11   <p>If you feel this message is in error, please notify the site admin
12     and include your identity.</p>
13 </fieldset>
14 {% endblock %}
15
16 {% block sidebar %}
17  {% if recents.results %}
18  <h3>Recently created</h3>
19  <ul>
20  {% for repo in recents.repos %}
21    {% include 'repo-sidebar-list.htm' %}
22  {% endfor %}
23  </ul>
24  {% endif %}
25 {% endblock %}