Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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 *