From 1ad7cb33abfac55a9be2f1d889c369fd1b43df2f Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 25 Oct 2010 19:40:32 +0000 Subject: changes for adelie --- bn_django/git_wiki/templates/git_wiki/commit.html | 39 ----------------------- 1 file changed, 39 deletions(-) delete mode 100644 bn_django/git_wiki/templates/git_wiki/commit.html (limited to 'bn_django/git_wiki/templates/git_wiki/commit.html') diff --git a/bn_django/git_wiki/templates/git_wiki/commit.html b/bn_django/git_wiki/templates/git_wiki/commit.html deleted file mode 100644 index e99d553..0000000 --- a/bn_django/git_wiki/templates/git_wiki/commit.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "git_wiki/base.html" %} - -{% block stylesheets %}{{ block.super }} - -{% endblock %} - -{% block title %}Commit: {{ commit.committer_date}} -{% endblock %} -{% block gitwiki %} {% if commit %} - Commit sha1 hash: - {{ commit.id }}
- Parent sha1 hash: - {% if commit.parenthash %} - - {{ commit.parenthash }} - {% else %}No parent... root commit?{% endif %} -
- Tree sha1 hash: - {% if commit.treehash %} - {{ commit.treehash }} - {% else %}No tree hash?{% endif %} -
Author: - {{ commit.author }}
- Author Date: - {{ commit.author_date }}
- Committer: - {{ commit.committer }}
- Committer Date: - {{ commit.committer_date }}
- {% if commit.pretty_diff %} -
{{ commit.pretty_diff|safe}}
- {% else %} - {% if commit.rawdiff %} -
{{ commit.rawdiff }}
- {% else %}No difference?{% endif %} - {% endif %} -{% else %} -

No such object: {{ hash }}

-{% endif %} {% endblock %} -- cgit v1.2.3