Reputation: 55
I'm building a website that needs sending a notification to the admin when a request for help happens, It doesn't need to be literally a notification, it may b email in the admin panel or so, Thanks ^^
Upvotes: 4
Views: 2113
Reputation: 1929
Use signals. django signals
When the request happens - invoke a signal from server and save new data that you wish.
Another easy and great example: simpleisbetterthancomplex
Maybe create history module to store the help request event.
Upvotes: 2