What is the best way to modify this; Currently when it outputs the key name
It puts a colon; ex. "First Name:" instaead of just "First Name"
I simply want to remove that from the form.
Also on the links of the welcome app; That generate the "[ login |
register | lost pasword? ]" links
I want to remove all those extra chars.
I checked the templates I dont see it in there; I also see something in
gluon.tools.py but I dont want to modify gluon code.
Thanks.
Bruno;
That just changes the value; but the problem is the form code adds an extra ":" to the end of the name.
so if you do as you suggested. db.auth_user.first_name.label='FName'
It outputs "FName:" not "FName" without the trailing colon ":"
If there's a workaround other than modifying the core file, I'd like to know as I'm also facing the same issue.