aboutsummaryrefslogtreecommitdiff
path: root/data/templates/forbidden.htm
diff options
context:
space:
mode:
authorJustin J. Novack <jnovack@gmail.com>2012-09-16 01:17:46 -0400
committerJustin J. Novack <jnovack@gmail.com>2012-09-16 01:17:46 -0400
commita73791f16d10ea0e2c477f29d9049d75516aa774 (patch)
treec5cc7406b5710804600477a45d20fa21815c67a3 /data/templates/forbidden.htm
parentb0687c328fcaa4d891b31c2146694654cd4707c9 (diff)
downloadphorkie-a73791f16d10ea0e2c477f29d9049d75516aa774.tar.gz
phorkie-a73791f16d10ea0e2c477f29d9049d75516aa774.zip
Added OpenID Authentication
Diffstat (limited to 'data/templates/forbidden.htm')
-rw-r--r--data/templates/forbidden.htm21
1 files changed, 21 insertions, 0 deletions
diff --git a/data/templates/forbidden.htm b/data/templates/forbidden.htm
new file mode 100644
index 0000000..ad40a9f
--- /dev/null
+++ b/data/templates/forbidden.htm
@@ -0,0 +1,21 @@
+{% extends "base.htm" %}
+{% block title %}Access Denied{% endblock %}
+
+{% block content %}
+
+<fieldset>
+ <legend>Access Denied</legend>
+ <img src="images/access_denied.png">
+</fieldset>
+{% endblock %}
+
+{% block sidebar %}
+ {% if recents.results %}
+ <h3>Recently created</h3>
+ <ul>
+ {% for repo in recents.repos %}
+ {% include 'repo-sidebar-list.htm' %}
+ {% endfor %}
+ </ul>
+ {% endif %}
+{% endblock %}