Download this file

log.html    19 lines (16 with data), 452 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{% extends 'jinja_master/master.html' %}
{% block title %}
{% if c.app.repo %}
Mercurial Repository: {{c.app.repo.name}}
{% else %}
Mercurial Repository
{% endif %}
{% endblock %}
{% block header %}{{c.app.config.options.mount_label}} Log{% endblock %}
{% block content %}
{% if log %}
{{c.log_widget.display(value=log, limit=limit, page=page, count=count)}}
{% else %}
<b>No (more) commits</b>
{% endif %}
{% endblock %}