changeset 2960:91d5f720e88f beta

fixes issue #614 Include repo name in delete confirmation for my repos page
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 25 Oct 2012 23:40:16 +0200
parents db40558e8914
children 08f89c688592
files rhodecode/templates/journal/journal_page_repos.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/journal/journal_page_repos.html	Wed Oct 24 23:50:15 2012 +0200
+++ b/rhodecode/templates/journal/journal_page_repos.html	Thu Oct 25 23:40:16 2012 +0200
@@ -29,7 +29,7 @@
             <td><a href="${h.url('repo_settings_home',repo_name=repo['name'])}" title="${_('edit')}"><img class="icon" alt="${_('private')}" src="${h.url('/images/icons/application_form_edit.png')}"/></a></td>
             <td>
               ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')}
-                ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository')+"');")}
+                ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository: %s') % repo['name']+"');")}
               ${h.end_form()}
             </td>
         </tr>