I've read the docs for Django that indicate using Fixtures or SQL when the APP is created. But I want to add the same fixture every time a new user is added. I'm not seeing an easy way to do this. I think that signals.py might be a way to do it, but I'm not able to see how to make sure the Fixture is added without an ID.
Fixture docs: https://docs.djangoproject.com/en/dev/howto/initial-data/
For instance, there are 5 tasks that are suggested starting tasks for each user. So each time a new user is created, I want those tasks added to the new users account. Tasks have a FK to User.
I'm open to suggestion for how to get this done.