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 432B

123456789101112131415161718192021
  1. from oscar.apps.customer import abstract_models
  2. class Email(abstract_models.AbstractEmail):
  3. pass
  4. class CommunicationEventType(abstract_models.AbstractCommunicationEventType):
  5. pass
  6. class Notification(abstract_models.AbstractNotification):
  7. pass
  8. class ProductAlert(abstract_models.AbstractProductAlert):
  9. pass
  10. from oscar.apps.customer.history_helpers import *
  11. from oscar.apps.customer.alerts.receivers import *