aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/tree.html
blob: 08f6e3566d36d25efdd21dfa8fc4bd705f605e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "git_wiki/base.html" %}

{% block path %}{{ block.super }} &raquo; <a href="/k/{{ tree.path }}/">
    {{ tree.path }}</a>{% endblock %}

{% block title %}Knowledge Category: {{ tree.path }}{% endblock %}

{% block gitwiki %}
    <h3>Directory listing:</h3>
    {% include "git_wiki/tree_table" %}
    <h3>Tree sha1 hash:</h3> 
        <span class="hash">{{ tree.id }}</span>
    <h3>Shortlog:</h3>
    {% include "git_wiki/shortlog_table" %}
{% endblock %}