Django: Implementing a referral program
Posted
by Hellnar
on Stack Overflow
See other posts from Stack Overflow
or by Hellnar
Published on 2010-03-25T16:50:45Z
Indexed on
2010/03/25
16:53 UTC
Read the original article
Hit count: 344
Hello, I have an ecommerce website that works in a classical way: people sign up, buy a product with their CC.
It uses the default Django auth system for users and registration and session framework.
Now I want to implement a referral system to my system where people can invite other people by giving their referral link (ie mysite.com/referral/123123/
) and if a person signs up AND buys an item, the inviter gets 5$.
How can this the implemented ?
© Stack Overflow or respective owner