## small box that displays changed/added/removed details fetched by AJAX
<%namespace name="base" file="/base/base.mako"/>
% if c.prev_page:
${h.checkbox(commit.raw_id,class_="commit-range")}
|
%if c.statuses.get(commit.raw_id):
%if c.statuses.get(commit.raw_id)[2]:
%else:
%endif
%else:
%endif
|
${h.show_id(commit)}
|
## phase
% 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
|
|
${urlify_commit_message(commit.message, c.repo_name)}
|
${h.age_component(commit.date)}
|
${base.gravatar_with_user(commit.author)}
|
|
% endfor
% if c.next_page: