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.

models.py 359B

12345678910111213141516171819
  1. from oscar.apps.analytics.abstract_models import (
  2. AbstractProductRecord, AbstractUserRecord,
  3. AbstractUserProductView, AbstractUserSearch)
  4. class ProductRecord(AbstractProductRecord):
  5. pass
  6. class UserRecord(AbstractUserRecord):
  7. pass
  8. class UserProductView(AbstractUserProductView):
  9. pass
  10. class UserSearch(AbstractUserSearch):
  11. pass