Parent: [6e738d] (diff)

Child: [96b8e4] (diff)

Download this file

index.html    27 lines (23 with data), 743 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'allura:templates/repo/repo_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}}{% endblock %}
{% block content %}
{{ clone_info(c.app.repo) }}
<div style="clear:both">&nbsp;</div>
{% if log %}
<h2>Recent Commits{% if branch %} on {{branch}}{% endif %}</h2>
{{c.log_widget.display(value=log, show_paging=False,
limit=limit, page=page, count=count)}}
{% if int(count) > int(limit) %}
<a href="log?page=1">More</a>
{% endif %}
{% else %}
<p><b>No (more) commits</b></p>
{% endif %}
{% endblock %}