diff options
author | rub <rub@piwigo.org> | 2007-04-08 21:29:12 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-04-08 21:29:12 +0000 |
commit | 56d9ed3c476f7b77c26667083b53266298ce96c4 (patch) | |
tree | ed2d34ec8b46dd4c699147ec2ef95a7c587acb4b /template/yoga | |
parent | 60febd633ab269ce95a809d388a65b6099e43aff (diff) |
Issue 675:
On group list page, when user push on delete or default image buttons, the message is not enough significant. (Only "Are you sure").
Informations about buttons have added.
git-svn-id: http://piwigo.org/svn/trunk@1948 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga')
-rw-r--r-- | template/yoga/admin/group_list.tpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/template/yoga/admin/group_list.tpl b/template/yoga/admin/group_list.tpl index 43ac53455..9d1082e74 100644 --- a/template/yoga/admin/group_list.tpl +++ b/template/yoga/admin/group_list.tpl @@ -32,9 +32,12 @@ <td>{group.NAME}<i><small>{group.IS_DEFAULT}</small></i></td> <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td> <td style="text-align:center;"> - <a href="{group.U_PERM}"><img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" alt="permissions" title="{lang:permissions}" /></a> - <a href="{group.U_DELETE}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a> - <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" alt="toggle_is_default_group" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a> + <a href="{group.U_PERM}"> + <img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" id="btn_permissions" alt="{lang:permissions}" title="{lang:permissions}" /></a> + <a href="{group.U_DELETE}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_delete').title + '\n\n' + '{lang:Are you sure?}');"> + <img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" id="btn_delete" alt="{lang:delete}" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a> + <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_toggle_is_default_group').title + '\n\n' + '{lang:Are you sure?}');"> + <img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" id="btn_toggle_is_default_group" alt="{lang:toggle_is_default_group}" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a> </td> </tr> <!-- END group --> |