How are you inserting the form into your view? If you're using SQLFORM you
can supply labels to your fields (in your case the 'agree' field) using
something like:
form = SQLFORM(db.auth_user, fields = ['agree'], labels = {'agree':'Do you
agree to the Terms and Conditions?'})
Obviously you will need to add all the fields to the fields list you want
to include in the form.
S
On Friday, March 30, 2012 8:19:14 AM UTC+1, Hassan Alnatour wrote:
>
> it works but its not showing any text next to the check box , how can i
> show some text next to the check box ?