Parent: [875040] (diff)

Child: [77fe11] (diff)

Download this file

log.html    21 lines (17 with data), 481 Bytes

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