## -*- 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")} |
|
${cs.revision} : ${h.short_id(cs.raw_id)} |
${h.age(cs.date,True)}
|
%if cs.branch: %endif |
${len(cs.affected_files)}
${_('Parent')}
${p_cs.revision}:${h.link_to(h.short_id(p_cs.raw_id),
h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor
%else:
${_('No parents')}
%endif
%if len(c.comments.get(cs.raw_id,[])) > 0:
${len(c.comments[cs.raw_id])}
%endif
|