comparison rhodecode/templates/forks/fork.html @ 1888:f91d3f9b7230 beta

White-space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 12 Jan 2012 06:32:40 +0200
parents 40c4f7351574
children b61b7e266b39
comparison
equal deleted inserted replaced
1886:50e32940e464 1888:f91d3f9b7230
6 </%def> 6 </%def>
7 7
8 <%def name="breadcrumbs_links()"> 8 <%def name="breadcrumbs_links()">
9 ${h.link_to(u'Home',h.url('/'))} 9 ${h.link_to(u'Home',h.url('/'))}
10 &raquo; 10 &raquo;
11 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))} 11 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
12 &raquo; 12 &raquo;
13 ${_('fork')} 13 ${_('fork')}
14 </%def> 14 </%def>
15 15
16 <%def name="page_nav()"> 16 <%def name="page_nav()">
18 </%def> 18 </%def>
19 <%def name="main()"> 19 <%def name="main()">
20 <div class="box"> 20 <div class="box">
21 <!-- box / title --> 21 <!-- box / title -->
22 <div class="title"> 22 <div class="title">
23 ${self.breadcrumbs()} 23 ${self.breadcrumbs()}
24 </div> 24 </div>
25 ${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))} 25 ${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
26 <div class="form"> 26 <div class="form">
27 <!-- fields --> 27 <!-- fields -->
28 <div class="fields"> 28 <div class="fields">
41 <label for="repo_group">${_('Repository group')}:</label> 41 <label for="repo_group">${_('Repository group')}:</label>
42 </div> 42 </div>
43 <div class="input"> 43 <div class="input">
44 ${h.select('repo_group','',c.repo_groups,class_="medium")} 44 ${h.select('repo_group','',c.repo_groups,class_="medium")}
45 </div> 45 </div>
46 </div> 46 </div>
47 <div class="field"> 47 <div class="field">
48 <div class="label label-textarea"> 48 <div class="label label-textarea">
49 <label for="description">${_('Description')}:</label> 49 <label for="description">${_('Description')}:</label>
50 </div> 50 </div>
51 <div class="textarea text-area editor"> 51 <div class="textarea text-area editor">
65 <label for="private">${_('Copy permissions')}:</label> 65 <label for="private">${_('Copy permissions')}:</label>
66 </div> 66 </div>
67 <div class="checkboxes"> 67 <div class="checkboxes">
68 ${h.checkbox('copy_permissions',value="True")} 68 ${h.checkbox('copy_permissions',value="True")}
69 </div> 69 </div>
70 </div> 70 </div>
71 <div class="field"> 71 <div class="field">
72 <div class="label label-checkbox"> 72 <div class="label label-checkbox">
73 <label for="private">${_('Update after clone')}:</label> 73 <label for="private">${_('Update after clone')}:</label>
74 </div> 74 </div>
75 <div class="checkboxes"> 75 <div class="checkboxes">
76 ${h.checkbox('update_after_clone',value="True")} 76 ${h.checkbox('update_after_clone',value="True")}
77 </div> 77 </div>
78 </div> 78 </div>
79 <div class="buttons"> 79 <div class="buttons">
80 ${h.submit('',_('fork this repository'),class_="ui-button")} 80 ${h.submit('',_('fork this repository'),class_="ui-button")}
81 </div> 81 </div>
82 </div> 82 </div>
83 </div> 83 </div>
84 ${h.end_form()} 84 ${h.end_form()}
85 </div> 85 </div>
86 </%def> 86 </%def>