Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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 *