djcev.com

//

Git Repos / blogofile_gitview / _templates / gitview / git_tag_list.mako

Last update to this file was on 2021-07-31 at 09:27.

Show git_tag_list.mako

<%page args="tags"/>\
<section class="tags"><table><tr>
<th class="tagname">Tag</th>
<th class="taglast">Date</th>
<th class="tagsummary">Commit Message</th>
<th class="tagauth">Author</th></tr>
% for tag in sorted(tags, key=lambda k: k['last_commit'], reverse=True):
<tr><td class="tagname">${tag['name']}</td>
<td class="taglast">${tag['last_commit'].strftime("%Y-%m-%d")}</td>
% if tag['commit_link']:
<td class="tagsummary"><a href="${tag['id']}.html">${tag['summary']}</a></td>
% else:
<td class="tagsummary">${tag['summary']}</td>
% endif
<td class="tagauth">${tag['author']}</td></tr>
% endfor
</table></section>\

Return to the top of this page or return to the overview of this repo.

Log git_tag_list.mako

Date Commit Message Author + -
2021-07-31 Implement branches & tags, various other changes cev +17  

Return to the top of this page or return to the overview of this repo.