Changes between Initial Version and Version 1 of Ticket #9318, comment 37


Ignore:
Timestamp:
Apr 28, 2017, 4:17:46 PM (7 years ago)
Author:
rgangopadhya

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9318, comment 37

    initial v1  
    3737
    3838def connect_all_signals(from_model, to_model):
    39     # connecting signals from one model to another
    40     # is useful when from_model inherits from to_model
    41     # and hence should take on all behavior from the
    42     # parent model
    43     # Django does not send signals for parent model
    44     # when child is triggered
    45     # https://code.djangoproject.com/ticket/9318#no1
    4639    for signal in signals:
    4740        signal.connect(
Back to Top