diff --git a/pylons_app/templates/users_manage.html b/pylons_app/templates/users.html copy from pylons_app/templates/users_manage.html copy to pylons_app/templates/users.html --- a/pylons_app/templates/users_manage.html +++ b/pylons_app/templates/users.html @@ -24,21 +24,25 @@
| Id | Username | -Password | Active | Admin | +Action | |
|---|---|---|---|---|---|---|
| ${i[0]} | -${i[1]} | -${i[2]} | +${h.link_to(i[1],h.url('user', id=i[0]))} | ${i[3]} | ${i[4]} | ++ ${h.form(url('user', id=i[0]),method='delete')} + ${h.submit('remove','remove',class_="submit")} + ${h.end_form()} + |