## Changesets table !
|
%if cs.raw_id in c.statuses:
${len(c.cs_comments[cs.raw_id])}
|
<% num_cs = len(c.cs_ranges) index = num_cs - cnt if index == 1: title = _('First (oldest) changeset in this list') elif index == num_cs: title = _('Last (most recent) changeset in this list') else: title = _('Position in this list of changesets') %> ${index} | ${cs.date} | %if c.visual.use_gravatar:${h.gravatar_div(h.email_or_none(cs.author), size=14, div_commit_id="${cs.raw_id}")} | %endif${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id), class_='changeset_hash')} | %if cs.branch: ${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.cs_repo.repo_name,branch=cs.branch))} %endif |
%for tag in cs.tags:
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor
|