I\'m trying to setup a signal so that when a valid form is saved, a function is ran to carry out a related task.
My app structure is as follows;
- ev
I think maybe you just need to import your helpers/status.py eg in models/__init__.py
otherwise your event_status signal gets defined ok but the signal handler create_status never gets connected by Django
if you only have one handler for that signal it might make sense to put it in the same module as the signal definition