On my Django site, I have an HTML form survey split across a few consecutive pages. I want to make sure that if a user gets to the last page and clicks "submit", they can't go back to the first page of the form and repeat the whole process. (I know it is impossible to stop determined users from circumventing whatever measures I put in place, but I want to deter casual users from doing so.)
I currently do this by setting a "has_submitted" cookie through request.session. However, I'd like to experiment with doing something similar based on IP address, so that I block off users from IP addresses that have already submitted the survey. What modules/ functions would I use to do this? Thanks, Rex --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

