blob: 847a8ea9b6d0fd8c9ee68d6e95ae32d76f87a4ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.htm" %}
{% block title %}
{%if repo.getDescription %}
{{repo.getDescription}}
{%else%}
{{repo.id}}
{%endif%}
{% endblock %}
{% block content %}
{% include 'display-head.htm' %}
{% for file in repo.getFiles %}
{% include 'display-file.htm' %}
{% endfor %}
{% include 'display-foot.htm' %}
{% endblock %}
{% block sidebar %}
{% include 'display-sidebar-history.htm' %}
{% endblock %}
|