aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/item.html
blob: 0df1b721162ef53ead350dbf31807af7479990b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "git_wiki/base.html" %}

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

{% block title %}Knowledge Item: {{ item.path }}{% endblock %}

{% block gitwiki %}
    <h3>Item name:</h3>
        <span class="hash">{{ item.name }}</span>
    <h3>Item sha1 hash:</h3>
        <span class="hash">{{ item.id }}</span>
    <h3>Raw Contents:</h3>
    <pre class="large">{{ item.contents|escape|wordwrap:80 }}</pre>

    <br />
    <span class="righty">
    <a href="/k/{{ item.slug }}/pdf/">pdf</a> - <a href="/k/{{ item.slug }}/log">log</a>
    </span>
    <br />
{% endblock %}