On 16 May 2012 09:43, Jason Brower wrote:
>
> If I print the form with {{=bio_form}} it works just fine, but I see all
> the extra data fields.
> Is there a way to fix this?
>
Yes. 'bio_form' contains the whole form with all the fields including
hidden ones.. In your view you chose to show on
Many values I don't need to show in the view so I have done this:
def join():
'''
NOTES:Covers the event bio and any payments if needed.
'''
event_details = db.event[request.args(0)]
if not event_details:
redirect(URL('default', 'index'))
attender_count = db(db.even
2 matches
Mail list logo