Changes between Version 3 and Version 4 of Signals


Ignore:
Timestamp:
Jun 18, 2006, 5:03:55 PM (18 years ago)
Author:
Tyson Tate <tyson@…>
Comment:

Added info on signals.py importing

Legend:

Unmodified
Added
Removed
Modified
  • Signals

    v3 v4  
    3434}}}
    3535
     36And then, in any file in which you use that signal (typically, models.py and views.py), you'll need to import your signals file:
     37
     38{{{
     39from project.app import signals
     40}}}
     41
    3642== Example ==
    3743
Back to Top