Files
@ c78de39f30fc
Branch filter:
Location: kallithea/rhodecode/templates/admin/users_groups/users_group_add.html - annotation
c78de39f30fc
1.5 KiB
text/html
summary: redirect from repo URLs with #branchname to changelog with this branch
This implements partial support for the Mercurial syntax for specifying
revisions so https://secure.rhodecode.org/rhodecode/#beta works both for
pulling with Mercurial and browsing.
This uses javascript, and has a bit of extra support for onhashchange in HTML5 browsers.
This implements partial support for the Mercurial syntax for specifying
revisions so https://secure.rhodecode.org/rhodecode/#beta works both for
pulling with Mercurial and browsing.
This uses javascript, and has a bit of extra support for onhashchange in HTML5 browsers.
fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c 1f334a68d057 fff21c9b075c fff21c9b075c f91d3f9b7230 f91d3f9b7230 5f1850e4712a fff21c9b075c ec6354949623 fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c f91d3f9b7230 fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c f91d3f9b7230 fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c fff21c9b075c 9cbfb5c97078 fff21c9b075c fff21c9b075c f91d3f9b7230 fff21c9b075c ec6354949623 f91d3f9b7230 fff21c9b075c fff21c9b075c fff21c9b075c f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add user group')} · ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${h.link_to(_('User groups'),h.url('users_groups'))}
»
${_('Add new user group')}
</%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('users_groups'))}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="users_group_name">${_('Group name')}:</label>
</div>
<div class="input">
${h.text('users_group_name',class_='small')}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="users_group_active">${_('Active')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('users_group_active',value=True, checked='checked')}
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="ui-btn large")}
</div>
</div>
</div>
${h.end_form()}
</div>
</%def>
|