I have two forms in two different functions which has a list of strings I want to want to query all the files in one form against other in another function what is the possible approach .For a single file I tried by using form = form_factory(Field('q', label='Query primer',requires=IS_NOT_EMPTY())) how to extend it for multiple files?
--