Files
@ 76b935e7427d
Branch filter:
Location: kallithea/rhodecode/templates/pullrequests/pullrequest_show_all.html - annotation
76b935e7427d
486 B
text/html
get_changeset uses now mercurial revrange to filter out branches.
it's around 20% faster this way
it's around 20% faster this way
1bc579bcd67a 1bc579bcd67a 1bc579bcd67a 1f334a68d057 1bc579bcd67a 1bc579bcd67a 1bc579bcd67a 9e677f6d34cb 1bc579bcd67a 1bc579bcd67a 2ea981f9da79 2ea981f9da79 2ea981f9da79 2ea981f9da79 1bc579bcd67a 87c97fcea029 9d2db665ef31 1bc579bcd67a 1bc579bcd67a 1bc579bcd67a 1bc579bcd67a 1bc579bcd67a 9d2db665ef31 1bc579bcd67a 1bc579bcd67a 1bc579bcd67a | <%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Pull Requests') % c.repo_name} · ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${_('Pull requests')}
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.context_bar('showpullrequest')}
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
${c.pullrequest_data}
</div>
</%def>
|