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 8550903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:04:24+00:00 2026-06-11T14:04:24+00:00

I think django userena is good choice for user registration information on behalf of

  • 0

I think django userena is good choice for user registration information on behalf of reinventing wheel again and again.

I want to integrate userena with social-auth somehow. But whatever I did, I couldnt accomplish to integrate them.

So how to integrate these two authentication systems.

Any idea or help will be appreciated…

Kind regards

  • 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-11T14:04:25+00:00Added an answer on June 11, 2026 at 2:04 pm

    I cant quite understand what you have in mind. However, take this into account:

    1 Userena provides abstract models to be connected with user. using the example from the source:

    from django.db import models
    from django.utils.translation import ugettext_lazy as _
    from django.contrib.auth.models import User
    
    from userena.models import UserenaLanguageBaseProfile
    
    import datetime
    
    class Profile(UserenaLanguageBaseProfile):
        """ Default profile """
        GENDER_CHOICES = (
            (1, _('Male')),
            (2, _('Female')),)
    
        user = models.OneToOneField(User,
                                    unique=True,
                                    verbose_name=_('user'),
                                    related_name='profile') 
    
        gender = models.PositiveSmallIntegerField(_('gender'),
                                                  choices=GENDER_CHOICES,
                                                  blank=True,
                                                  null=True)
        website = models.URLField(_('website'), blank=True, verify_exists=True)
        location =  models.CharField(_('location'), max_length=255, blank=True)
        birth_date = models.DateField(_('birth date'), blank=True, null=True)
        about_me = models.TextField(_('about me'), blank=True)
    

    As you can see userena provides an abstract class that has the user as a one to one field.

    On the other hand, django-social-auth knows how to authenticate with the different social services and populates the table auth_user in the database. Other tables altered by django-social-auth are django-session and social_auth_usersocialauth. This means that django social auth knows how to authenticate, takes care of sessions and aggregates extra data such as tokens.

    If what you have in mind is just to use userena to add extra data to the user this can be done in a simpler form.

    I could say use userena if:

    • You need mugshots (images)
    • You need to add language to each user
    • You need to use https
    • You need to confirm the accounts via email (this kinda collides with using social auth, no?)
    • Need some basic administration of user permissions for profiles.

    update: If you want to have both auth, take a look at this nice project.

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

Sidebar

Related Questions

I'm working with a django form, and I have a choice field. I think
I'm trying to set up a choice field in django, but I don't think
Personally I don't think Django's built-in widget for ManyToManyField relationship is particularly good. Especially
I think I'm using Django in google app engine this way: from google.appengine.ext.webapp import
I looked at django-celery tutorial and I think it will really help me running
I have a similar question than django cross-site reverse . But i think I
Think I have an integer array like this: a[0]=60; a[1]=321; a[2]=5; now I want
I am using django-userena . I have a model called UserProfile . I've added
I am looking for a basic Django application that looks good and has basic
Please post example code when request.POST contain query string in django, because i think

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.