I have a field that currently the user can just type into but I have ENUM in my table, I would like it so they can only select one or the other as an option. Currently im trying to use base_filters, I have everything imported correctly, just not working
class FrankView(ModelView):
datamodel = SQLAInterface(Frank)
list_columns = ['id', 'name']
add_columns = ['id', 'name']
edit_columns = ['id', 'name']
base_filters = [['name', FilterEqual, 'Maven']]