djcev.com

//

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

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

Show git_branch_list.mako

<%page args="branches"/>\
<section class="branches"><table><tr>
<th class="branchname">Branch</th>
<th class="branchlast">Last Commit</th>
<th class="branchsummary">Commit Message</th>
<th class="branchauth">Author</th></tr>
% for b in branches:
% if b['is_head']:
<tr><td class="branchname"><strong>${b['name']}</strong></td>
% else:
<tr><td class="branchname">${b['name']}</td>
% endif
<td class="branchlast">${b['last_commit'].strftime("%Y-%m-%d")}</td>
% if b['commit_link']:
<td class="branchsummary"><a href="${b['id']}.html">${b['summary']}</a></td>
% else:
<td class="branchsummary">${b['summary']}</td>
% endif
<td class="branchauth">${b['author']}</td></tr>
% endfor
</table></section>\

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

Log git_branch_list.mako

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

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