##// END OF EJS Templates
implemented repo switcher list as dynamically loaded by xhr requestt....
implemented repo switcher list as dynamically loaded by xhr requestt. fixed sorting bug and missing groups on them

File last commit:

r1084:17721a2d beta
r1158:f63cc1cb beta
Show More
repo_fork.html
61 lines | 1.9 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('Fork')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
fixed breadcrumbs in few pages
r1084 ${h.link_to(u'Home',h.url('/'))}
&raquo;
renamed project to rhodecode
r547 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
&raquo;
${_('fork')}
</%def>
<%def name="page_nav()">
${self.menu('')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="repo_name">${_('Fork name')}:</label>
</div>
<div class="input">
extended size of some input fields...
r562 ${h.text('fork_name',class_="small")}
extended repo creation by repo type. fixed fork creation to maintain repo type.
r659 ${h.hidden('repo_type',c.repo_info.repo_type)}
renamed project to rhodecode
r547 </div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('description',cols=23,rows=5)}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Private')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
</div>
</div>
<div class="buttons">
css optimizations
r888 ${h.submit('','fork this repository',class_="ui-button")}
renamed project to rhodecode
r547 </div>
</div>
</div>
${h.end_form()}
</div>
</%def>