Files
@ a9e50dce3081
Branch filter:
Location: kallithea/pylons_app/templates/admin/permissions/permissions.html - annotation
a9e50dce3081
2.1 KiB
text/html
Removed config names from whoosh and celery,
celery is now configured based on the config name it's using
on celeryconfig. And whoosh uses it's own logger configured just for whoosh
Test creates a fresh whoosh index now, for more accurate checks
fixed tests for searching
celery is now configured based on the config name it's using
on celeryconfig. And whoosh uses it's own logger configured just for whoosh
Test creates a fresh whoosh index now, for more accurate checks
fixed tests for searching
d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f c8fc57b92a60 d982ed8e32d8 c8fc57b92a60 d982ed8e32d8 d982ed8e32d8 d982ed8e32d8 c8fc57b92a60 d982ed8e32d8 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f d982ed8e32d8 3ed2d46a2ca7 3ed2d46a2ca7 c8fc57b92a60 c8fc57b92a60 c8fc57b92a60 c8fc57b92a60 c8fc57b92a60 c8fc57b92a60 fdebc5f67dc6 c8fc57b92a60 c8fc57b92a60 3ed2d46a2ca7 63c697d1a631 63c697d1a631 63c697d1a631 63c697d1a631 63c697d1a631 63c697d1a631 63c697d1a631 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 c8fc57b92a60 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 fdebc5f67dc6 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 3ed2d46a2ca7 c8fc57b92a60 c8fc57b92a60 3ed2d46a2ca7 c8fc57b92a60 c8fc57b92a60 c8fc57b92a60 558eb7c5028f d982ed8e32d8 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Permissions administration')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${_('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">
<div class="field">
<div class="label">
<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"
tooltip_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'))}">
${_('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">
${h.submit('set','set',class_="ui-button ui-widget ui-state-default ui-corner-all")}
</div>
</div>
</div>
${h.end_form()}
</div>
</%def>
|