Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8921879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:40:33+00:00 2026-06-15T06:40:33+00:00

I have made a group general from admin panel. Now I want when a

  • 0

I have made a group “general” from admin panel.

Now I want when a new user register to my app it will by default assign to this group and user_id and group_id stored in intermediate table of auth_user and auth_group.

Actually I have tried this myself and getting errors.

EDIT

def signup(request, template="accounts/account_signup.html"):
    """
    Signup form.
    """
    profile_form = get_profile_form()
    form = profile_form(request.POST or None)
    #return render_to_response('test.html',{'q':email},context_instance=RequestContext(request))
    if request.method == "POST" and form.is_valid():
        new_user = form.save()
    group_id=Group.objects.get(id=1)
    group_id.groups.add(new_user)
    #group = User_Groups(user=new _user,group=1)
    #group.save()
    last_inserted_id = User.objects.order_by('-id')[0]
    value_email = last_inserted_id.email
    ...............

Error

‘Group’ object has no attribute ‘groups’

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T06:40:34+00:00Added an answer on June 15, 2026 at 6:40 am

    This, to begin with, will help you understand the error you’re getting

    group_id = Group.objects.get(id=1)
    

    Here, group_id becomes an instance of the model Group.
    Group and its instances have attributes name, and permissions.

    group_id.groups.add(new_user)
    

    Is nonsense. groups is an attribute of User and not Group.
    Replace group_id with new_user :

    new_user.groups.add(group_id)
    

    This will add group_id (which should be named group instead) to the list of groups new_user is member of.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made a custom number pad keypad for my iOS app, but want
i have made an application having entity framewrok. It is wpf application, now it
I have made a code that read data from flash Nand (without filesystem). fd
I have made a String[] array by using String.split(.) . I am now trying
I have made my own exception class which derives from runtime_error and is getting
I'm fairly new to ggplot. I have made a bumpplot using code posted below.
I'm new to MySql and to databases in general. I have a query, which
I have a website where user enter information daily, i want to present that
I have made a .deb of my app using fpm : fpm -s dir
I have a table called users and each user can belong to one group,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.