diff --git a/pylons_app/templates/admin/repos/repos.html b/pylons_app/templates/admin/repos/repos.html --- a/pylons_app/templates/admin/repos/repos.html +++ b/pylons_app/templates/admin/repos/repos.html @@ -15,18 +15,24 @@ <%def name="main()">

${_('Repositories administration')}

- +
+ + + + + %for cnt,repo in enumerate(c.repos_list): %endfor
${_('name')}${_('last revision')}${_('action')}
${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']))} r${repo['rev']}:${repo['tip']} ${h.form(url('repo', id=repo['name']),method='delete')} - ${h.submit('remove','remove',class_="submit",onclick="return confirm('Confirm to delete this repository');")} + ${h.submit('remove','delete',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")} ${h.end_form()}
+ ${h.link_to(u'add repo',h.url('new_repo'))}