##// END OF EJS Templates
swap the select values with revisions dynamically when switching the repos on pull request view...
swap the select values with revisions dynamically when switching the repos on pull request view - fix the partial ajax request that should never do redirect

File last commit:

r1888:f91d3f9b beta
r2847:1cd0a0c0 beta
Show More
repo_add.html
28 lines | 584 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add repository')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repositories'),h.url('repos'))}
&raquo;
${_('add new')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<%include file="repo_add_base.html"/>
</div>
</%def>