mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-03 00:12:14 +02:00
20f0541697
included page, localized items are managed directly in the template. - new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering. - modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem). - improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div). - modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages). - deletion : no link to profile from admin/user_list anymore (no need). git-svn-id: http://piwigo.org/svn/trunk@817 68402e56-0260-453c-a942-63ccdbb3a9ee
59 lines
1.9 KiB
Smarty
59 lines
1.9 KiB
Smarty
<h1>{TITLE}</h1>
|
|
|
|
<form action="{F_ACTION}" method="post" id="categoryPermissions">
|
|
|
|
<h2>{lang:Groups}</h2>
|
|
|
|
<fieldset>
|
|
<legend>{lang:Permission granted}</legend>
|
|
<ul>
|
|
<!-- BEGIN group_granted -->
|
|
<li><label><input type="checkbox" name="deny_groups[]" value="{group_granted.ID}" /> {group_granted.NAME}</label></li>
|
|
<!-- END group_granted -->
|
|
</ul>
|
|
<input type="submit" name="deny_groups_submit" value="{lang:Deny selected groups}" />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{lang:Permission denied}</legend>
|
|
<ul>
|
|
<!-- BEGIN group_denied -->
|
|
<li><label><input type="checkbox" name="grant_groups[]" value="{group_denied.ID}"> {group_denied.NAME}</label></li>
|
|
<!-- END group_denied -->
|
|
</ul>
|
|
<input type="submit" name="grant_groups_submit" value="{lang:Grant selected groups}" />
|
|
</fieldset>
|
|
|
|
<h2>{lang:Users}</h2>
|
|
|
|
<fieldset>
|
|
<legend>{lang:Permission granted}</legend>
|
|
<ul>
|
|
<!-- BEGIN user_granted -->
|
|
<li><label><input type="checkbox" name="deny_users[]" value="{user_granted.ID}" /> {user_granted.NAME}</label></li>
|
|
<!-- END user_granted -->
|
|
</ul>
|
|
<input type="submit" name="deny_users_submit" value="{lang:Deny selected users}" />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{lang:Permission granted thanks to a group}</legend>
|
|
<ul>
|
|
<!-- BEGIN user_granted_indirect -->
|
|
<li>{user_granted_indirect.NAME} ({user_granted_indirect.GROUP})</li>
|
|
<!-- END user_granted_indirect -->
|
|
</ul>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{lang:Permission denied}</legend>
|
|
<ul>
|
|
<!-- BEGIN user_denied -->
|
|
<li><label><input type="checkbox" name="grant_users[]" value="{user_denied.ID}"> {user_denied.NAME}</label></li>
|
|
<!-- END user_denied -->
|
|
</ul>
|
|
<input type="submit" name="grant_users_submit" value="{lang:Grant selected users}" />
|
|
</fieldset>
|
|
|
|
</form>
|