Download this file

commit.html    21 lines (18 with data), 646 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends 'jinja_master/master.html' %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}} / Changeset {{h.text.truncate(commit.hex(), 10)}}
{% endblock %}
{% block header %}Changeset <a href="{{commit.url()}}">{{h.text.truncate(commit.hex(), 10)}}</a>{% endblock %}
{% block content %}
{{c.revision_widget.display(value=commit, prev=prev, next=next)}}
<table>
<tbody>
{% for kind, path in commit.diff_summarize() %}
<tr>
<td>{{kind}}</td>
<td><a href="./tree/{{h.really_unicode(path)}}">{{h.really_unicode(path)}}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}