aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/shortlog_table
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_wiki/templates/git_wiki/shortlog_table')
-rw-r--r--bn_django/git_wiki/templates/git_wiki/shortlog_table27
1 files changed, 0 insertions, 27 deletions
diff --git a/bn_django/git_wiki/templates/git_wiki/shortlog_table b/bn_django/git_wiki/templates/git_wiki/shortlog_table
deleted file mode 100644
index 95aac57..0000000
--- a/bn_django/git_wiki/templates/git_wiki/shortlog_table
+++ /dev/null
@@ -1,27 +0,0 @@
-{% if shortlog %}
-<table class="gitbrowser">
-{% for l in shortlog %}
-<tr>
- <td class="date">
- {{ l.date }}</td>
- <td class="author">
- {{ l.author|striptags }}</td>
- <td class="description">
- <a href="/k/commit/{{ l.hash }}/" class="description">
- {{ l.description|escape|truncatewords:10 }}</a></td>
- <td class="shorthash">
- {% if heads %}{% for h in heads.iteritems %}
- {% ifequal h.1 l.hash %}
- <span class="head">[{{ h.0 }}]</span>
- {% endifequal %}
- {% endfor %}{% endif %}
- {% if tags %}{% for t in tags.iteritems %}
- {% ifequal l.hash t.1 %}
- <span class="tag">[{{ t.0 }}]</span>
- {% endifequal %}{% endfor %}{% endif %}
-
- <a href="/k/commit/{{ l.hash }}" class="subtle">
- <span class="hash">{{ l.shorthash }}</span></a>...</td></tr>
-{% endfor %}
-</table>
-{% else %}No shortlog!{% endif %}