summaryrefslogtreecommitdiff
path: root/data/templates/revision.htm
blob: 1462a4a6bc09b3784027a17eda83c452f677220a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% 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 %}