##// END OF EJS Templates
Update LICENSE.md to include license information about Select2...
Update LICENSE.md to include license information about Select2 License details were taken from the LICENSE file in Select2 distribution.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4129:3e32980f rhodecode-2.2.5-gpl
Show More
repo_add.html
37 lines | 773 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('Add repository')}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
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;
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('Add Repository')}
renamed project to rhodecode
r547 </%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>