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.

1234567891011121314151617
  1. from oscar.apps.customer.abstract_models import (
  2. AbstractEmail, AbstractCommunicationEventType, AbstractNotification)
  3. class Email(AbstractEmail):
  4. pass
  5. class CommunicationEventType(AbstractCommunicationEventType):
  6. pass
  7. class Notification(AbstractNotification):
  8. pass
  9. from oscar.apps.customer.history_helpers import *