##// END OF EJS Templates
pullrequests on different repos: default to same destination/source branch...
pullrequests on different repos: default to same destination/source branch When a pull request is initiated between two different repositories, instead of using the current tip as destination branch, use the same branch as on the source repository.

File last commit:

r4811:37354e1a default
r4844:556e98fd default
Show More
repo_add.html
37 lines | 764 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%block name="title">
${_('Add Repository')}
%if c.site_name:
&middot; ${c.site_name}
%endif
</%block>
<%def name="breadcrumbs_links()">
%if c.authuser.is_admin:
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repositories'),h.url('repos'))}
%else:
${_('Admin')}
&raquo;
${_('Repositories')}
%endif
&raquo;
${_('Add Repository')}
</%def>
<%block name="header_menu">
${self.menu('admin')}
</%block>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<%include file="repo_add_base.html"/>
</div>
</%def>