I use flask-appbuilder, I use ModelView Like:
class ListView(ModelView):
datamodel = SQLAInterface(mylist)
edit_form = listEditForm
list_title = "List"
list_columns = ["listid",'listtype','listowner', 'creationtime', 'creationempid','changetime', 'changeempid']
related_views = [ListNumberView]
I want to build a form action on ListNumberView which do not need to select item.
I mean I want to add a button on list page of ListNumberView which can linked to other page with, do not need to select any items.
How to do it.