##// END OF EJS Templates
permissions: explicitly register all permissions set for user. Fixes #4217...
permissions: explicitly register all permissions set for user. Fixes #4217 - in order to get a proper inheritance chain of permissions we'll register each step. This allows to get full inheritance chain. Final permissions will be the same becuase the only thing we change is we register each step before permissions final value. - Also display the permissions summary in a nicer way more explicitly stating what permissions overwrites which.

File last commit:

r1941:be441b36 default
r2063:8a6e9139 default
Show More
permissions_global.mako
10 lines | 385 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282
global-permissions: ported controller to pyramid view....
r1941 ${h.secure_form(h.route_path('admin_permissions_global_update'), method='POST', request=request)}
templating: use .mako as extensions for template files.
r1282 <div class="form permissions-global">
<!-- fields -->
<div class="fields">
<%namespace name="dpb" file="/base/default_perms_box.mako"/>
${dpb.default_perms_radios(global_permissions_template = True)}
</div>
</div>
${h.end_form()}