So I have an app that takes a form, and sends and e-mail address to somebody, but I want a way to stick and activation URL generated by Django into that e-mail, and not have the form data commit to the database until that activation link is clicked. Is there any way to do this?
Activation link to allow committing to database in Django
745 Views Asked by Jacob Prud'homme AtThere are 2 best solutions below

You might want to set/unset the is_active
flag on the user.
Conceptually:
- When a user registers succesfully, be sure to set the flag to False;
- Autogenerate a unique string that is tied to the user's ID and send the activation url via email;
- In the activation view, decompose the key into the user ID and set the is_active flag to True;
- In your login view, check whether the user trying to log in has is_active is True.
Then you'll be sure that users who are logged in have a confirmed email address.
The page in Django's documentation on user authentication provides all necessary information. For a sample login view, the chapter "How to log a user in" has one.
If you'd prefer to use a reusable app, django-registration might fit your needs perfectly.
(Post-reply addition:) why not commit the data to the database? The "waste" of having unactivated users residing in your database does not outweigh the effort you'd need to implement a solution that does not commit the data to the database. Moreover, it might be more than interesting to have an idea of the amount of unactivated users (and act accordingly).
Based on the comments on my first answer, here's a reworked one more suited to your needs.
Create a model, e.g. ServiceHours, that next to the data you want to collect (hours done, supervisor_email, ...), has the following fields:
I'd suggest adding a post_save signal to the Model, so that whenever a new ServiceHours instance is created (by saving the form), the email to the supervisor is sent.
Define a view to validate service hours based on an activation key
In your urls.py, define an url to your validate_hours view:
This has all been off the top of my head, so please excuse any errors. I hope you get the gist of the process and can extend according to your exact needs.