Assigning a group while adding user in django-admin
- by Lokharkey
In my application, I have models that have the Users model as a Foreign key, eg:
class Doctor(models.Model):
username=models.ForeignKey(User, unique=True)
...
In the admin site, when adding a new Doctor, I have the option of adding a new User next to the username field. This is exactly what I want, but in the dialog that opens, it asks for a username and password for the new user; I would also like to be able to assign a group to this new user. What would be the best way of doing this ?
Thanks,
lokharkey