##// END OF EJS Templates
Add new quick link to created child groups within a group
marcink -
r3193:cbc644d9 beta
parent child Browse files
Show More
@@ -50,7 +50,7
50 <label for="group_parent_id">${_('Group parent')}:</label>
50 <label for="group_parent_id">${_('Group parent')}:</label>
51 </div>
51 </div>
52 <div class="input">
52 <div class="input">
53 ${h.select('group_parent_id','',c.repo_groups,class_="medium")}
53 ${h.select('group_parent_id',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
54 </div>
54 </div>
55 </div>
55 </div>
56
56
@@ -21,6 +21,11
21 <!-- box / title -->
21 <!-- box / title -->
22 <div class="title">
22 <div class="title">
23 ${self.breadcrumbs()}
23 ${self.breadcrumbs()}
24 <ul class="links">
25 <li>
26 <span>${h.link_to(_(u'ADD NEW CHILD GROUP'),h.url('new_repos_group', parent_group=c.repos_group.group_id))}</span>
27 </li>
28 </ul>
24 </div>
29 </div>
25 <!-- end box / title -->
30 <!-- end box / title -->
26 ${h.form(url('repos_group',id=c.repos_group.group_id),method='put')}
31 ${h.form(url('repos_group',id=c.repos_group.group_id),method='put')}
General Comments 0
You need to be logged in to leave comments. Login now