diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-02-16 01:04:51 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-02-16 01:04:51 +0000 |
commit | f27bd8558af02ec510137a196b874c87925e14bb (patch) | |
tree | 10ec3cffc5e1c2367b4ab588d1f55a735d42898a /template/yoga | |
parent | d22a07cee30b96f703ab2fa295a4c5f4407d0e00 (diff) |
feature 233: confirmation for deletion of remote sites, user groups and
virtual categories
git-svn-id: http://piwigo.org/svn/trunk@1045 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/cat_list.tpl | 2 | ||||
-rw-r--r-- | template/yoga/admin/cat_modify.tpl | 2 | ||||
-rw-r--r-- | template/yoga/admin/group_list.tpl | 2 | ||||
-rw-r--r-- | template/yoga/admin/site_manager.tpl | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/template/yoga/admin/cat_list.tpl b/template/yoga/admin/cat_list.tpl index d24b335d9..971f84393 100644 --- a/template/yoga/admin/cat_list.tpl +++ b/template/yoga/admin/cat_list.tpl @@ -21,7 +21,7 @@ <li><a href="{category.permissions.URL}" title="{lang:edit category permissions}" ><img src="{themeconf:icon_dir}/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li> <!-- END permissions --> <!-- BEGIN delete --> - <li><a href="{category.delete.URL}" title="{lang:delete category}"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li> + <li><a href="{category.delete.URL}" title="{lang:delete category}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li> <!-- END delete --> </ul> diff --git a/template/yoga/admin/cat_modify.tpl b/template/yoga/admin/cat_modify.tpl index 01b4c3d48..c1a4b1d5a 100644 --- a/template/yoga/admin/cat_modify.tpl +++ b/template/yoga/admin/cat_modify.tpl @@ -18,7 +18,7 @@ <li><a href="{permissions.URL}" title="{lang:edit category permissions}" ><img src="{themeconf:icon_dir}/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li> <!-- END permissions --> <!-- BEGIN delete --> - <li><a href="{delete.URL}" title="{lang:delete category}"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li> + <li><a href="{delete.URL}" title="{lang:delete category}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li> <!-- END delete --> </ul> diff --git a/template/yoga/admin/group_list.tpl b/template/yoga/admin/group_list.tpl index 23c1ce1c9..bafa87a71 100644 --- a/template/yoga/admin/group_list.tpl +++ b/template/yoga/admin/group_list.tpl @@ -21,7 +21,7 @@ <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}"><img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" /></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}" /></a> </td> </tr> <!-- END group --> diff --git a/template/yoga/admin/site_manager.tpl b/template/yoga/admin/site_manager.tpl index baf18ee0f..565264efe 100644 --- a/template/yoga/admin/site_manager.tpl +++ b/template/yoga/admin/site_manager.tpl @@ -24,7 +24,7 @@ </td><td>
[<a href="{sites.site.U_UPDATE}" title="{lang:update this site}">{lang:remote_site_update}</a>]
<!-- BEGIN delete -->
- [<a href="{sites.site.delete.U_DELETE}" onclick="return confirm('{lang:remote_site_delete_hint}.\n{sites.site.NAME}\n{lang:Are you sure}?');"
+ [<a href="{sites.site.delete.U_DELETE}" onclick="return confirm('{lang:Are you sure?}');"
title="{lang:remote_site_delete_hint}">{lang:remote_site_delete}</a>]
<!-- END delete -->
<!-- BEGIN remote -->
|