I would like to be able to add users in Django to a user-created group through a view and a template form. Creating the groups is easy, I just am having trouble creating a way to add bulk users (like this email1@email.com, email2@email.com, email203920492@email.com etc) to the group. If the user exists in the system, they are sent a message to join, if they don't exist, they get a message inviting them to join the website and the group.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
If I understand what you're asking... If you have a list of the emails, then simply loop through the list of emails and get the user assigned to each email:
In your view, you would add the current logged in user to the group when they visit the link, with something like:
|
|||||||||||
|
|
Here is a partial answer -- this returns or creates the users from an email form in the temaplate (
|
|||
|
|
