Git Repos / blogofile_gitview / _templates / gitview / git_commit_list.mako
Last update to this file was on 2021-08-01 at 20:14.
Show git_commit_list.mako
<%page args="commits"/>\
<section class="commits"><table><tr>
<th class="commdate">Date</th>
<th class="commmesg">Commit Message</th>
<th class="commauth">Author</th>
<th class="commcha">F</th>
<th class="commins">+</th>
<th class="commdel">-</th></tr>
% for c in commits:
% if c == None:
<tr><td class="commdate"></td>
<td class="commmesg">More commits remaining [...]</td>
<td class="commauth"></td>
<td class="commcha"></td>
<td class="commins"></td>
<td class="commdel"></td></tr>
% else:
<tr><td class="commdate">${c['date'].strftime("%Y-%m-%d")}</td>
<td class="commmesg"><a href="${c['id']}.html">${c['summary']}</a></td>
<td class="commauth">${c['author']}</td>
<td class="commcha">${c['ds_changed']}</td>
<td class="commins">+${c['ds_insert']}</td>
<td class="commdel">-${c['ds_delete']}</td></tr>
% endif
% endfor
</table></section>\
Return to the top of this page or return to the overview of this repo.
Log git_commit_list.mako
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2021-08-01 | Add missing stats to templates, change tag check | cev | +12 | -3 |
2021-07-31 | Implement branches & tags, various other changes | cev | +2 | -3 |
2021-07-25 | Initial commit | cev | +18 |
Return to the top of this page or return to the overview of this repo.