## checkbox ## commit message expand arrow %for cnt,commit in enumerate(c.pagination): %endfor
${_('Commit')} ${_('Commit Message')} ${_('Age')} ${_('Author')} ${_('Refs')}
${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
%if c.comments.get(commit.raw_id): ${len(c.comments[commit.raw_id])} %endif ${h.show_id(commit)}
 
${h.urlify_commit_message(commit.message, c.repo_name)}
${h.age_component(commit.date)} ${self.gravatar_with_user(commit.author)}
## branch %if commit.branch: ${h.shorter(commit.branch)} %endif ## bookmarks %if h.is_hg(c.rhodecode_repo): %for book in commit.bookmarks: ${h.shorter(book)} %endfor %endif ## tags %for tag in commit.tags: ${h.shorter(tag)} %endfor