comparison rhodecode/templates/journal/journal_page_repos.html @ 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 301773d07012
children 9937afa7f093
comparison
equal deleted inserted replaced
2959:db40558e8914 2960:91d5f720e88f
27 </td> 27 </td>
28 ## 28 ##
29 <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> 29 <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>
30 <td> 30 <td>
31 ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')} 31 ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')}
32 ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository')+"');")} 32 ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository: %s') % repo['name']+"');")}
33 ${h.end_form()} 33 ${h.end_form()}
34 </td> 34 </td>
35 </tr> 35 </tr>
36 %endfor 36 %endfor
37 </tbody> 37 </tbody>