templates/last-commit.html@main
raw
1<hr/>
2<table id="log">
3 <thead>
4 <tr>
5 <th class="commit-date">Date</th>
6 <th class="commit-summary">Commit Message</th>
7 <th class="commit-author-email">Author</th>
8 <th class="commit-files-modified">Files</th>
9 <th class="commit-lines-added">+</th>
10 <th class="commit-lines-removed">-</th>
11 </tr>
12 </thead>
13 <tbody>
14 {% let commit = last_commit.clone() %}
15 {% include "commit-tr.html" %}
16 <tr>
17 <td colspan="6"><a href="/{{repo|repo_name|urlencode_strict}}/log/{{spec}}/{{path.display()}}">...</a></td>
18 </tr>
19 </tbody>
20</table>
21<hr/>