I belive there's no connection between the superuser account and Auth users. Possibly you will have to create an admin role and add membership to any auth user you want to allow crud. Then you can decorate the update action function with
@auth.requires_membership("admin") def update(): ... El sábado, 4 de agosto de 2012 20:53:02 UTC-3, Rob_McC escribió: > > Alan: > > . Thanks very much. > > . I didn't know that was an option. > > . I tried it and it works perfectly. > > . I added this to my *db.py* file, field 'arrange' is to order the > questions - I just enter an integer to sort. > > db.define_table('faq',Field('question','string'),Field('answer','string'), > Field('arrange','integer')) > > > . in the *VIEW* *default/faq.html* file > > {{for faq in db(db.faq).select(orderby = db.faq.arrange):}} > {{ =H3(T(faq.question))}} > > ... > {{=DIV(T(faq.answer))}} > ... > {{pass}} > > > . I know now to push button "update all languages" - so the faq will be > interred intro the language files. > > . So, now all I have to figure out is to allow only the user "admin" to be > able to update the faq,-- now any user can. > > Thanks again > > ~Rob > > > --