## 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)}
% if hasattr(commit, 'phase'):
% if commit.phase != 'public':
${commit.phase}
% endif
% endif
## obsolete commits
% if hasattr(commit, 'obsolete'):
% if commit.obsolete:
${_('obsolete')}
% endif
% endif
## hidden commits
% if hasattr(commit, 'hidden'):
% if commit.hidden:
${_('hidden')}
% endif
% endif