Django
The web framework for perfectionists with deadlines.
Menu
Overview
Download
Documentation
News
Community
Code
Issues
About
♥ Donate
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
BESbswy
Issues
Login
Preferences
View Tickets
Reports
Timeline
Wiki
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 3
and
Version 4
of
Signals
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Jun 18, 2006, 5:03:55 PM (
19 years
ago)
Author:
Tyson Tate <tyson@…>
Comment:
Added info on signals.py importing
Legend:
Unmodified
Added
Removed
Modified
Tabular
Unified
Signals
v3
v4
34
34
}}}
35
35
36
And 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
{{{
39
from project.app import signals
40
}}}
41
36
42
== Example ==
37
43
Back to Top