## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('%s Changelog') % c.repo_name} · ${c.rhodecode_name} %def> <%def name="breadcrumbs_links()"> <% size = c.size if c.size <= c.total_cs else c.total_cs %> ${_('Changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)} %def> <%def name="page_nav()"> ${self.menu('changelog')} %def> <%def name="main()"> ${self.context_bar('changelog')}
${h.checkbox(cs.raw_id,class_="changeset_range")} | ${h.shorter(h.person(cs.author),22)} | ${h.show_id(cs)} |
${h.age(cs.date,True)}
|
%if c.comments.get(cs.raw_id,[]):
${len(c.comments[cs.raw_id])}
${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor
%endif
%for tag in cs.tags:
${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor
%if (not c.branch_name) and cs.branch:
${h.link_to(h.shorter(cs.branch),h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
%endif
|