Files
Piwigo/template/cclear/admin/cat_perm.tpl
plegall f01a9f5b7c - new : HTML BODY identifier to let CSS stylesheets manage specific
behaviour.

- deletion : admin/search useless

- improvement : in admin/user_list, special behaviour for true/false fields
  (expand, show_comments)

- new : gallery_title and gallery_description are displayed at the top of
  each page.

- improvement : simplification in HTML for categories menu.

- improvement : standardization of presentation in all public pages
  (identification, registration, search, profile, notification, comments,
  etc.)

(not in ChangeLog, below this line)

- add forgotten notification.php (should have been added in a previous
  commit)

- [template cclear] deletion of useless class .bouton

- [template cclear] for test purpose, new presentation of register page
  (using FORM.filter)

- [template cclear] adaptation of admin/group_list from template default

- [template cclear] deletion of obsolete admin/infos_images

- [template cclear] deletion of obsolete admin/search_username

- [template cclear] new icon register.png


git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-08-25 22:43:47 +00:00

61 lines
1.9 KiB
Smarty

<h2>{lang:Manage permissions for a category}</h2>
<h3>{CATEGORIES_NAV}</h3>
<form action="{F_ACTION}" method="post" id="categoryPermissions">
<h4>{lang:Groups}</h4>
<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>
<h4>{lang:Users}</h4>
<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>