Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 *