summaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/repository_raw_output.html
blob: 3ce6894cc9a0f70eb313a36750c229cd9f444e72 (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_browse/base.html" %}

{% block path %}
  <a href="../">code</a> &raquo;
{% if object %}
  <a href="/code/{{ object.slug }}/">{{ object.name }}</a>
{% endif %}
{% endblock %}

{% block title %}
{% if object %}
Repository: {{ object.name }}
{% endif %}
{% endblock %}

{% block content %}
{% if object %}
    {% if raw_content %}
    <br />
    <pre>

{{ raw_content }}
    </pre>
    {% endif %}
{% else %}
<p>No such repository!</p>
{% endif %}

{% endblock %}