|
a/Allura/allura/templates/widgets/repo/log.html |
|
b/Allura/allura/templates/widgets/repo/log.html |
1 |
{% from 'allura:templates/jinja_master/lib.html' import email_gravatar, abbr_date with context %}
|
1 |
{% from 'allura:templates/jinja_master/lib.html' import email_gravatar, abbr_date with context %}
|
2 |
<div>
|
2 |
<div>
|
3 |
{% if show_paging %}
|
|
|
4 |
<div class="grid-19" style="clear:both">
|
|
|
5 |
{{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
|
|
|
6 |
</div>
|
|
|
7 |
{% endif %}
|
|
|
8 |
<table style="clear:both">
|
3 |
<table style="clear:both">
|
9 |
<thead>
|
4 |
<thead>
|
10 |
<tr>
|
5 |
<tr>
|
11 |
<th style="text-align:left">Commit</th>
|
6 |
<th style="text-align:left">Commit</th>
|
12 |
<th style="text-align:left">Date</th>
|
7 |
<th style="text-align:left">Date</th>
|
|
... |
|
... |
42 |
</tr>
|
37 |
</tr>
|
43 |
{% endfor %}
|
38 |
{% endfor %}
|
44 |
</tbody>
|
39 |
</tbody>
|
45 |
</table>
|
40 |
</table>
|
46 |
{% if show_paging %}
|
41 |
{% if show_paging %}
|
47 |
<div class="grid-19" style="clear:both">
|
|
|
48 |
{{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
|
42 |
{{widget.fields['page_list'].display(limit=limit, page=page, count=count)}}
|
49 |
{{widget.fields['page_size'].display(limit=limit, page=page, count=count)}}
|
43 |
{{widget.fields['page_size'].display(limit=limit, page=page, count=count)}}
|
50 |
</div>
|
|
|
51 |
{% endif %}
|
44 |
{% endif %}
|
52 |
</div>
|
45 |
</div>
|