comparison rhodecode/templates/settings/repo_settings.html @ 1888:f91d3f9b7230 beta

White-space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 12 Jan 2012 06:32:40 +0200
parents 9dae92a65e40
children e82c04f52b9f
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 ${_('Settings')} 13 ${_('Settings')}
14 </%def> 14 </%def>
15 15
16 <%def name="page_nav()"> 16 <%def name="page_nav()">
17 ${self.menu('settings')} 17 ${self.menu('settings')}
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_settings_update', repo_name=c.repo_info.repo_name),method='put')} 25 ${h.form(url('repo_settings_update', repo_name=c.repo_info.repo_name),method='put')}
26 <div class="form"> 26 <div class="form">
27 <!-- fields --> 27 <!-- fields -->
28 <div class="fields"> 28 <div class="fields">
39 <label for="repo_group">${_('Repository group')}:</label> 39 <label for="repo_group">${_('Repository group')}:</label>
40 </div> 40 </div>
41 <div class="input"> 41 <div class="input">
42 ${h.select('repo_group','',c.repo_groups,class_="medium")} 42 ${h.select('repo_group','',c.repo_groups,class_="medium")}
43 </div> 43 </div>
44 </div> 44 </div>
45 <div class="field"> 45 <div class="field">
46 <div class="label label-textarea"> 46 <div class="label label-textarea">
47 <label for="description">${_('Description')}:</label> 47 <label for="description">${_('Description')}:</label>
48 </div> 48 </div>
49 <div class="textarea text-area editor"> 49 <div class="textarea text-area editor">
50 ${h.textarea('description',cols=23,rows=5)} 50 ${h.textarea('description',cols=23,rows=5)}
51 </div> 51 </div>
52 </div> 52 </div>
53 53
54 <div class="field"> 54 <div class="field">
55 <div class="label label-checkbox"> 55 <div class="label label-checkbox">
56 <label for="private">${_('Private')}:</label> 56 <label for="private">${_('Private')}:</label>
57 </div> 57 </div>
58 <div class="checkboxes"> 58 <div class="checkboxes">
59 ${h.checkbox('private',value="True")} 59 ${h.checkbox('private',value="True")}
60 </div> 60 </div>
61 </div> 61 </div>
62 62
63 <div class="field"> 63 <div class="field">
64 <div class="label"> 64 <div class="label">
65 <label for="">${_('Permissions')}:</label> 65 <label for="">${_('Permissions')}:</label>
66 </div> 66 </div>
67 <div class="input"> 67 <div class="input">
68 <%include file="../admin/repos/repo_edit_perms.html"/> 68 <%include file="../admin/repos/repo_edit_perms.html"/>
69 </div> 69 </div>
70 70
71 <div class="buttons"> 71 <div class="buttons">
72 ${h.submit('save','Save',class_="ui-button")} 72 ${h.submit('save','Save',class_="ui-button")}
73 ${h.reset('reset','Reset',class_="ui-button")} 73 ${h.reset('reset','Reset',class_="ui-button")}
74 </div> 74 </div>
75 </div> 75 </div>
76 </div> 76 </div>
77 ${h.end_form()} 77 ${h.end_form()}
78 </div> 78 </div>
79 </div> 79 </div>
80 </%def> 80 </%def>
81
82