##// END OF EJS Templates
pullrequest: pullrequest from changelog view...
pullrequest: pullrequest from changelog view It seems like it didn't work ... perhaps because I broke it. But now we clean it up and make it work: Use rev_end as the revision to merge. We don't know where to merge ... but start_rev cannot be used for that. This might to some extent have been working before ... but we prefer to clean it up and start over again when the normal merge workflow is fully working.

File last commit:

r3338:cfc0fef6 beta
r3485:b19b1723 beta
Show More
repo_add.html
34 lines | 714 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()">
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 %if c.rhodecode_user.is_admin:
White-space cleanup
r1888 ${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repositories'),h.url('repos'))}
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 %else:
${_('Admin')}
&raquo;
whitespace cleanup
r3338 ${_('Repositories')}
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 %endif
renamed project to rhodecode
r547 &raquo;
${_('add new')}
</%def>
<%def name="page_nav()">
Mads Kiilerich
html: don't use tabs
r3197 ${self.menu('admin')}
renamed project to rhodecode
r547 </%def>
added base for repo creation forms, both templates will share the same form.
r1111
renamed project to rhodecode
r547 <%def name="main()">
Mads Kiilerich
html: don't use tabs
r3197 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
added base for repo creation forms, both templates will share the same form.
r1111 <%include file="repo_add_base.html"/>
White-space cleanup
r1888 </div>
</%def>