## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%block name="title"> ${_('%s Changelog') % c.repo_name} %if c.changelog_for_path: /${c.changelog_for_path} %endif %block> <%def name="breadcrumbs_links()"> <% size = c.size if c.size <= c.total_cs else c.total_cs %> ${_('Changelog')} %if c.changelog_for_path: - /${c.changelog_for_path} %endif %if c.revision: @ ${h.short_id(c.first_revision.raw_id)} %endif - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)} %def> <%block name="header_menu"> ${self.menu('repositories')} %block> <%def name="main()"> ${self.repo_context_bar('changelog', c.first_revision.raw_id if c.first_revision else None)}
%if c.changelog_for_path: ${h.checkbox(cs.raw_id,class_="changeset_range", disabled="disabled")} %else: ${h.checkbox(cs.raw_id,class_="changeset_range")} %endif | %if c.statuses.get(cs.raw_id): %endif | ${h.gravatar(h.email_or_none(cs.author), size=16)} ${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(book,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor
%endif
%for tag in cs.tags:
${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor
%if (not c.branch_name) and cs.branch:
${h.link_to(cs.branch,h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
%endif
|