##// END OF EJS Templates
set the status of changesets initially on pull request, and make sure we care of version collisions....
set the status of changesets initially on pull request, and make sure we care of version collisions. Fixes issues #690 and #587

File last commit:

r1888:f91d3f9b beta
r3175:5d1d25c1 beta
Show More
repo_add.html
28 lines | 584 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${_('Add repository')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
White-space cleanup
r1888 ${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repositories'),h.url('repos'))}
renamed project to rhodecode
r547 &raquo;
${_('add new')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
added base for repo creation forms, both templates will share the same form.
r1111
renamed project to rhodecode
r547 <%def name="main()">
added base for repo creation forms, both templates will share the same form.
r1111 <div class="box">
<!-- box / title -->
<div class="title">
White-space cleanup
r1888 ${self.breadcrumbs()}
added base for repo creation forms, both templates will share the same form.
r1111 </div>
<%include file="repo_add_base.html"/>
White-space cleanup
r1888 </div>
</%def>