aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/item.html
blob: 16d3518f74487a7c02f054923a6c7ca2e3bd2ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "git_wiki/base.html" %}

{% block stylesheets %}
{{ block.super }}
<link rel="STYLESHEET" type="text/css" href="/style/docutils.css" />
{% endblock %}

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

{% block title %}{% endblock %}

{% block gitwiki %}
&nbsp;
{{ doc.html_body }}
    <br /><hr />
    <h3>Meta</h3>
    <b>Item name:</b>
        <span class="hash">{{ item.name }}</span><br />
    <b>Item sha1 hash:</b>
        <span class="hash">{{ item.id }}</span><br />
    <br />
    <span class="righty">
    <a href="/k/{{ item.slug }}/raw/">raw</a> - 
    <a href="/k/{{ item.slug }}/pdf/">pdf</a> - 
    <a href="/k/{{ item.slug }}/log">log</a>
    </span>
    <br />
{% endblock %}