I have the following table :-
db.define_table(('employee',
Field('email_id', requires = IS_EMAIL()),
Field('image', 'upload'))i want to show the image according to the filtration of email id. how it will be possible in web2py

