You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

managers.py 208B

1234567
  1. from django.db import models
  2. class BrowsableProductManager(models.Manager):
  3. def get_query_set(self):
  4. return super(BrowsableProductManager, self).get_query_set().filter(
  5. parent=None)