[Answered ]-WIth django, can you do something similiar to user = User.new(params[:user]) during a form post?

2👍

Look at the model form documentation. Basically, the code would look like:

f = UserForm(request.POST or None)
user = f.save()

0👍

If you are talking about Django’s built-in auth app, then keep in mind that there are a few considerations when creating users, such as passwords, unique usernames, etc

Leave a comment