##// END OF EJS Templates
added reply comment button on top of inline comments...
added reply comment button on top of inline comments fixed some issues with interactive file filter on files

File last commit:

r1575:e0b06946 beta
r1705:5e4827a8 beta
Show More
repos_groups_edit.html
64 lines | 2.0 KiB | text/html | HtmlLexer
#47 implemented basic edition of groups
r1347 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
implements #226 repo groups available by path...
r1538 ${_('Edit repos group')} ${c.repos_group.name} - ${c.rhodecode_name}
#47 implemented basic edition of groups
r1347 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repos groups'),h.url('repos_groups'))}
&raquo;
implements #226 repo groups available by path...
r1538 ${_('edit repos group')} "${c.repos_group.name}"
#47 implemented basic edition of groups
r1347 </%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('repos_group',id=c.repos_group.group_id),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
Augusto Herrmann
Corrected some label-input linking in templates
r1575 <label for="group_name">${_('Group name')}:</label>
#47 implemented basic edition of groups
r1347 </div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
</div>
<div class="field">
<div class="label label-textarea">
Augusto Herrmann
Corrected some label-input linking in templates
r1575 <label for="group_description">${_('Description')}:</label>
#47 implemented basic edition of groups
r1347 </div>
<div class="textarea text-area editor">
${h.textarea('group_description',cols=23,rows=5,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
Augusto Herrmann
Corrected some label-input linking in templates
r1575 <label for="group_parent_id">${_('Group parent')}:</label>
#47 implemented basic edition of groups
r1347 </div>
<div class="input">
${h.select('group_parent_id','',c.repo_groups,class_="medium")}
</div>
</div>
<div class="buttons">
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 ${h.submit('save',_('save'),class_="ui-button")}
#47 implemented basic edition of groups
r1347 </div>
</div>
</div>
${h.end_form()}
</div>
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 </%def>