# HG changeset patch # User Marcin Kuzminski # Date 2012-10-25 23:40:16 # Node ID 91d5f720e88fcbfbd78ca0b31d26e382eb529a4f # Parent db40558e8914a4575d21a903ec0b15153af9ade8 fixes issue #614 Include repo name in delete confirmation for my repos page diff --git a/rhodecode/templates/journal/journal_page_repos.html b/rhodecode/templates/journal/journal_page_repos.html --- a/rhodecode/templates/journal/journal_page_repos.html +++ b/rhodecode/templates/journal/journal_page_repos.html @@ -29,7 +29,7 @@ ${_('private')} ${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()}