Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

models.py 474B

12345678910111213141516171819202122
  1. from oscar.apps.analytics.abstract_models import (AbstractProductRecord, AbstractUserRecord,
  2. AbstractUserProductView, AbstractUserSearch)
  3. class ProductRecord(AbstractProductRecord):
  4. pass
  5. class UserRecord(AbstractUserRecord):
  6. pass
  7. class UserProductView(AbstractUserProductView):
  8. pass
  9. class UserSearch(AbstractUserSearch):
  10. pass
  11. # Import receiver functions
  12. from oscar.apps.analytics.receivers import *