From 0c7c01d4ff1635cb7f04bed3d099b30b967f44bd Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 18 Feb 2007 13:53:30 -0800 Subject: renamed a few templates, further work on git_browse --- bn_django/git_browse/templates/git_browse/full_log.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bn_django/git_browse/templates/git_browse/full_log.html (limited to 'bn_django/git_browse/templates/git_browse/full_log.html') diff --git a/bn_django/git_browse/templates/git_browse/full_log.html b/bn_django/git_browse/templates/git_browse/full_log.html new file mode 100644 index 0000000..a467ae8 --- /dev/null +++ b/bn_django/git_browse/templates/git_browse/full_log.html @@ -0,0 +1,14 @@ +{% extends "git_browse/base.html" %} + +{% block gitbrowse %} +{% if log_objs %} +

Full Log


+ {% for item in log_objs %} +
+ Hash: {{ item.hash }} +
Author: {{ item.author }} +
Date: {{ item.date }} +
Comment:
{{ item.comment }}
+ {% endfor %} +{% endif %} +{% endblock %} -- cgit v1.2.3