views:

16

answers:

0

Is it possible to get a save and continue to edit functionality on the creation of a user when clicking on the "+" in a related model?

for example here's a model:

class Example(models.Model): user = model.ForeignKey(User) ... ...

When in the Add/Edit admin screen for Example objects when a user wants/needs to add a new user they can add from that edit interface and a new basic add window pops up for adding a new user, but the only options are to cancel or save and what I'd like to have is the same "save and continue editing" option from when adding a User from the user admin...hope this makes sense.

Why I'm looking for this is so that when editors are adding a new user manually they can add in the user's first name, last name and most importantly the email address so the user could request to have their password reset. Right now the only workflow option is to create new example object and when needing to create a new user they can only enter in username and password. Then once the example object is created they then have to go into the users admin and edit the newly created user.