您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

models.py 339B

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 *