Artem

Results 3 comments of Artem

It works well if the primary key is named "id"

I faced the same requirement. I can propose next solution: in `models.py::ModelViewMeta`: ```diff - cls.identity = slugify_class_name(model.__name__) + cls.identity = kwargs.get("identity", slugify_class_name(model.__name__)) ``` So the usage is: ``` # for...

@MitPitt Thanks! Your workaround is much neater than mine