##// END OF EJS Templates
pullrequests: fix changesets ordering being reversed when creating new pull requests...
pullrequests: fix changesets ordering being reversed when creating new pull requests 41b4edf77b5b tried to make the displayed order of changeset consistent: The topmost is always the latest. That did however also reverse the ordering of the changesets sent back in the post when used in the pull request creation form. Displaying the pull request later on would reverse it again and thus show it in the 'wrong' order. We now undo that reversing when creating the pull requests, and the stored data will thus be the same as before.

File last commit:

r3654:ec635494 beta
r3720:9855b31d beta
Show More
repo_add.html
34 lines | 721 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('Add repository')} &middot; ${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;
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 ${_('Add new')}
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>