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
--