diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-06-01 02:27:17 -0400 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-06-01 02:27:17 -0400 |
commit | c21fcbc9cb3837495549161817f5d02dd9be5d3b (patch) | |
tree | c693abcec3acb83c4d391d056ffd50e058a1d7ae /bn_django/git_wiki/templates | |
parent | aff6ddb6508f11cd7b6d17abac60d05ddc0e139b (diff) | |
download | bnewnet-c21fcbc9cb3837495549161817f5d02dd9be5d3b.tar.gz bnewnet-c21fcbc9cb3837495549161817f5d02dd9be5d3b.zip |
pygments highlighting for wiki commits
Diffstat (limited to 'bn_django/git_wiki/templates')
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/commit.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/bn_django/git_wiki/templates/git_wiki/commit.html b/bn_django/git_wiki/templates/git_wiki/commit.html index 8497311..82aace4 100644 --- a/bn_django/git_wiki/templates/git_wiki/commit.html +++ b/bn_django/git_wiki/templates/git_wiki/commit.html @@ -1,5 +1,9 @@ {% extends "git_wiki/base.html" %} +{% block stylesheets %}{{ block.super }} +<link rel="STYLESHEET" type="text/css" href="/static/style/pygments-default.css" /> +{% endblock %} + {% block title %}Commit: {{ commit.committer_date}} {% endblock %} {% block gitwiki %} {% if commit %} @@ -23,9 +27,13 @@ {{ commit.committer }}<br /> <b>Committer Date: </b> {{ commit.committer_date }}<br /> - {% if commit.rawdiff %} - <pre class="large">{{ commit.rawdiff }}</pre> - {% else %}No diff{% endif %} + {% if commit.pretty_diff %} + <pre class="large">{{ commit.pretty_diff}}</pre> + {% else %} + {% if commit.rawdiff %} + <pre class="large">{{ commit.rawdiff }}</pre> + {% else %}No difference?{% endif %} + {% endif %} {% else %} <h3>No such object: {{ hash }}</h3> {% endif %} {% endblock %} |