## small box that displays changed/added/removed details fetched by AJAX <%namespace name="base" file="/base/base.mako"/> % if c.prev_page:
${h.show_id(commit)}
## COMMIT PHASES
## Draft
% if hasattr(commit, 'phase'):
% if commit.phase != 'public':
${commit.phase[0].upper()}
% endif
% endif
## obsolete commits
% if hasattr(commit, 'obsolete') and commit.obsolete:
O
% endif
## hidden commits
% if hasattr(commit, 'hidden') and commit.hidden:
H
% endif