##// END OF EJS Templates
fixed error when trying to make download on empty repository
fixed error when trying to make download on empty repository

File last commit:

r904:82aaf4e7 beta
r945:05b59c48 beta
Show More
permissions.html
84 lines | 2.5 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${_('Permissions administration')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${_('Permissions')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<h3>${_('Default permissions')}</h3>
${h.form(url('permission', id='default'),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
#49 Enabled anonymous access for web interface controllable from permissions pannel
r673 <div class="field">
<div class="label label-checkbox">
<label for="anonymous">${_('Anonymous access')}:</label>
</div>
<div class="checkboxes">
<div class="checkbox">
${h.checkbox('anonymous',True)}
</div>
</div>
</div>
renamed project to rhodecode
r547 <div class="field">
templates for ldap settings
r706 <div class="label label-select">
renamed project to rhodecode
r547 <label for="default_perm">${_('Repository permission')}:</label>
</div>
<div class="select">
${h.select('default_perm','',c.perms_choices)}
${h.checkbox('overwrite_default','true')}
<label for="overwrite_default">
<span class="tooltip"
reimplemented tooltip, refactored tooltip_title into title for proper html,...
r904 title="${h.tooltip(_('All default permissions on each repository will be reset to choosen permission, note that all custom default permission on repositories will be lost'))}">
renamed project to rhodecode
r547 ${_('overwrite existing settings')}</span> </label>
</div>
</div>
<div class="field">
<div class="label">
<label for="default_register">${_('Registration')}:</label>
</div>
<div class="select">
${h.select('default_register','',c.register_choices)}
</div>
</div>
<div class="field">
<div class="label">
<label for="default_create">${_('Repository creation')}:</label>
</div>
<div class="select">
${h.select('default_create','',c.create_choices)}
</div>
</div>
<div class="buttons">
css optimizations
r888 ${h.submit('set','set',class_="ui-button")}
renamed project to rhodecode
r547 </div>
</div>
</div>
${h.end_form()}
</div>
</%def>
templates for ldap settings
r706