Re: Not sure if I am doing django-paypal correctly

2021-12-31 Thread lone...@gmail.com
I found a better article at: Better Django-paypal article . For the most part, it does a really thorough explanation of what needs to be done. There were some things that I had to adjust myself, but that was easy enough. My

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread Joel Tanko
The code is really simple to implement, but I don't think the explanation was intuitive enough. You would need to create a signal like so #hooks.py from django.dispatch import Signal success_signal = Signal(providing_args=[]) #views.py from .hooks import success_signal ... # after payment

Re: Not sure if I am doing django-paypal correctly

2021-12-30 Thread lone...@gmail.com
Hey man, beggars cannot be choosers! Thank you! On Thursday, December 30, 2021 at 1:28:12 AM UTC-5 Yorben Verhoest wrote: > Hello > > I'm a Django Noobie and maybe I'm completely wrong about this but in my > app named "core", I have a file called apps.py where I register my signals. > I just

Re: Not sure if I am doing django-paypal correctly

2021-12-29 Thread Yorben Verhoest
Hello I'm a Django Noobie and maybe I'm completely wrong about this but in my app named "core", I have a file called apps.py where I register my signals. I just followed a tutorial as well so I can't yet explain what it does but if I had to guess is just to register the app with my signals.