diff options
author | nikrou <nikrou@piwigo.org> | 2006-06-18 12:04:59 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-06-18 12:04:59 +0000 |
commit | 57cf3ba758cadf56e35aa030edf525e61a56cfc6 (patch) | |
tree | e5d0e5709285107f49130233e6f73874bd71f99e /template/yoga/admin/cat_perm.tpl | |
parent | 7457a64443e25650728bcbe47f4649e21c04f4e6 (diff) |
Issue 426: first step; separation of admin and public into two templates
Need to simplify and delete files not needed
git-svn-id: http://piwigo.org/svn/trunk@1363 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/cat_perm.tpl')
-rw-r--r-- | template/yoga/admin/cat_perm.tpl | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/template/yoga/admin/cat_perm.tpl b/template/yoga/admin/cat_perm.tpl deleted file mode 100644 index 9c8fafa69..000000000 --- a/template/yoga/admin/cat_perm.tpl +++ /dev/null @@ -1,65 +0,0 @@ -<div class="titrePage"> - <ul class="categoryActions"> - <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li> - </ul> - <h2>{lang:Manage permissions for a category}</h2> -</div> - -<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}" {TAG_INPUT_ENABLED}/> - </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}" {TAG_INPUT_ENABLED}/> - </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}" {TAG_INPUT_ENABLED}/> - </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}" {TAG_INPUT_ENABLED}/> - </fieldset> - -</form> |