summaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/repository_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/repository_list.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/repository_list.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/bn_django/git_browse/templates/git_browse/repository_list.html b/bn_django/git_browse/templates/git_browse/repository_list.html
new file mode 100644
index 0000000..a089fec
--- /dev/null
+++ b/bn_django/git_browse/templates/git_browse/repository_list.html
@@ -0,0 +1,44 @@
+{% extends "git_browse/base.html" %}
+{# {% load markup %} #}
+
+{% block path %}code{% endblock %}
+{% block title %}Code Repositories{% endblock %}
+
+{% block content %}
+{% if object_list %}
+{% for item in object_list %}
+ <div class="righty"><br />
+ <a href="{{ item.slug }}/tree/">tree</a> -
+ <a href="{{ item.slug }}/changelog/">changelog</a>
+ </div>
+ <h3><a href="{{ item.slug }}/">{{ item.name }}</a> (aka {{ item.slug }})</h3>
+ {{ item.description }}
+{% endfor %}
+{% else %}
+<p>No repositories have been set up yet.</p>
+{% endif %}
+
+
+{% if is_paginated %}
+{% if has_previous %}
+<a href="./?page={{ previous }}">&laquo; previous</a> |
+{% endif %}
+{% if has_next %}
+<a href="./?page={{ next }}">next &raquo;</a>
+{% endif %}
+{% endif %}
+
+<!--
+{% if not user.is_anonymous %}
+<p>
+ <a href="{{admin_url}}/photos/gallery/add/">Create a new gallery.</a>
+</p>
+{% else %}
+<p>
+ <a href="/accounts/login/?next={{ request.path }}">
+ Login</a> to create a new gallery.
+</p>
+{% endif %}
+-->
+
+{% endblock %}