4

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 ^^

1 Answers1

2

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.

Ohad the Lad
  • 1,889
  • 1
  • 15
  • 24