после копания всего, что я должен был добавить к своему виду модели, эти методы:
def get_query(self):
return super(LaptopModelView, self).get_query().filter(
Laptops.system == "pc"
)
def get_count_query(self):
return super(LaptopModelView, self).get_count_query().filter(
Laptops.system == "pc"
)