aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/full_log.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/full_log.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/full_log.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/bn_django/git_browse/templates/git_browse/full_log.html b/bn_django/git_browse/templates/git_browse/full_log.html
deleted file mode 100644
index 913a3c4..0000000
--- a/bn_django/git_browse/templates/git_browse/full_log.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "git_browse/base.html" %}
-
-{% block gitbrowse %}
-{% if log_objs %}
- <h3>Full Log</h3><br />
- {% for item in log_objs %}
- <hr>
- <b>Hash: </b>
- <a href="/code/{{object.slug}}/commit/{{ item.hash }}/">
- <span class="hash">{{ item.hash }}</span></a>
- <br /><b>Author: </b>{{ item.author }}
- <br /><b>Date: </b>{{ item.date }}
- <br /><b>Comment: </b>
- <pre class="large">{{ item.comment|escape|wordwrap:80 }}</pre>
- {% endfor %}
-{% endif %}
-{% endblock %}