On Dec 12, 12:45 am, Richard <richar...@gmail.com> wrote: > @abrilc, would be interested to see what you have. > My specifications are simple: > - view users
def users(): return dict(users=db(db.auth_user).select()) > - block/unblock user db.auth_user(id).update_record(registration_key='blocked') > - delete user > - edit user details def edit_user(): return dict(form=crud.update(db.auth_user,request.args(0))) > - give/revoke administrator privilege so others can manage this page