aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/repository_info.html
blob: f529c84db8dfc0270f6da186bb906a594b6bbfa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "git_browse/base.html" %}

{% block gitbrowse %}
{{ object.description }}
<h3>Shortlog (<a href="/code/{{object.slug}}/log/">full log</a>) (<a href="#"><strike>last commit</strike></a>)</h3>
{% include "git_browse/shortlog_table" %}
<h3>Heads (<a href="/code/{{object.slug}}/tree/">browse</a>)</h3>
{% include "git_browse/heads_table" %}
<h3>Tags (<a href="/code/{{object.slug}}/tree/">browse</a>)</h3>
{% include "git_browse/tags_table" %}
<h3>Filelist (<a href="/code/{{object.slug}}/tree/">browse tree</a>)</h3>
{% if filelist %} <pre class="large">{{ filelist }}</pre>
{% else %}No files!{% endif %}
{% endblock %}