summaryrefslogtreecommitdiff
path: root/data/templates/revision.htm
blob: cd62e6c45fc736dff2bf6a3d3ffc386a2df45969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.htm" %}
{% block title %}
 {{repo.getTitle}}
 - revision {{repo.hash}}
{% endblock %}

{% block content %}
 {% include 'revision-head.htm' %}

{% for file in repo.getFiles %}
 {% include 'display-file.htm' %}
{% endfor %}

{% endblock %}

{% block sidebar %}
 {% include 'display-sidebar-history.htm' %}
{% endblock %}