Questions tagged [django-registration]

Django-registration is a pluggable django app designed to make allowing user signups as painless as possible.

At one point Django-registration had been abandoned and was considered obsolete. In recent times the project has been resurrected and resides at: https://github.com/ubernostrum/django-registration

The original objective of the django-registration was to be a

pluggable django app designed to make allowing user signups as painless as possible.

There are several alternatives including
django-allauth :https://github.com/pennersr/django-allauth
django-registration-redux : https://github.com/macropin/django-registration/

Useful links

700 questions
5
votes
0 answers

Multiple registration flows and profile types with django-allauth

I have two kind of users: the first has to pay in oder to register to the site and he can perform a set of actions. The second can register and login for free (with their Facebook or Google or Username&Password) and can perform a different set of…
5
votes
1 answer

Register & login to django backend from iphone app and mobile browser

We are building a Django backend with an iphone app and also would like to allow login through web/mobile browsers. The requirement is to be able to register and logon from the website/mobile browser and also through the iphone app. I have also…
Neo_32
  • 225
  • 4
  • 13
5
votes
1 answer

Which is more flexible? django-registration or django-userena

I am looking to users of django-userena and django-registration (which I think is more popular) to answer this. I have checked out the docs for both and I am still not completely sold on either choice. Due to the way django handles userprofiles (at…
Kiran
  • 461
  • 5
  • 15
5
votes
1 answer

Django-registration - no module named simple error

I've found that if you use version 1.5 of Django that the django-registration module breaks since in the latest dev version of django, the simple.py class has been removed.
Eamonn
  • 597
  • 7
  • 23
5
votes
2 answers

Not able to create user profile using django-registration

I am using django-registration app. I am trying to create a social networking website. I am a newbie to website development. Here is the error I am getting: Environment: Request Method: POST Request URL: 127.0.0.1:8000/accounts/register/ Django…
Dinesh Singh
  • 727
  • 1
  • 10
  • 22
5
votes
5 answers

Django registration SMTPServerDisconnected error

I use django-registration for my project to manage user registration, login, etc. But When I sign up for an account I came across this problem: SMTPServerDisconnected For the record, I did configure email related settings in my…
Gnijuohz
  • 3,294
  • 6
  • 32
  • 47
4
votes
1 answer

Extending forms in django?

I recently tried extending django's registration form with the following but i can only see the default four fields. IS there anything i'm missing? Or should i be creating my own registration backend if i were to create a custom form? class…
Stanwin Siow
  • 437
  • 1
  • 8
  • 21
4
votes
2 answers

What/Where to modify django-registration to use with mobile broswers

I am using django-registration along side django auth for my client account creation and login. Our site will be used by moble users and desktop users. We just started tackling the idea of mobile users by loading different templates from the view…
michael
  • 2,577
  • 5
  • 39
  • 62
4
votes
2 answers

django-registration, django.contrib.auth login and user "is active" flag

I'm using django 1.1. the docs http://docs.djangoproject.com/en/1.1/topics/auth/#topics-auth on the is_active flag it says This doesn’t control whether or not the user can log in. Nothing in the authentication path checks the is_active flag,…
w--
  • 6,427
  • 12
  • 54
  • 92
4
votes
1 answer

django-registration view customization

I'm using django-registration (see: https://bitbucket.org/ubernostrum/django-registration ) on one of my projects. The standard setup for the django-registration is to add a the code below in the urls.py file (r'^accounts/',…
avatar
  • 12,087
  • 17
  • 66
  • 82
4
votes
1 answer

Using email as username with django-registration

I am using django-registration 2.0.4 (https://django-registration.readthedocs.org/en/2.0.4/, https://github.com/ubernostrum/django-registration) with Django 1.8 and am trying to customise the registration form and application itself. While I am able…
Shin
  • 678
  • 3
  • 12
  • 22
4
votes
1 answer

Django Registration Number of users logged in

I have an application where I would like to display the number of users that are logged into the system. Im trying to determine the cleanest way to do this that will not create a large load on the system. I know that the system keeps track of the…
DZ.
  • 3,181
  • 2
  • 15
  • 10
4
votes
1 answer

form-horizontal not working with django-crispy-forms and django-registration-redux

Disclaimer: I'm a complete novice with Django and python. I'm using crispy forms with django registration redux. I've applied form-horizontal to a subclass of the registration form but it doesn't render with labels on same line as input fields as…
4
votes
2 answers

How to use different view for django-registration?

I have been trying to get django-registration to use the view RegistrationFormUniqueEmail and following the solution from this django-registration question. I have set my urls.py to from django.conf.urls import patterns, include, url from…
bab
  • 2,119
  • 3
  • 28
  • 49
4
votes
1 answer

Django registration login redirection

With django-registration, I have in settings.py: LOGIN_REDIRECT_URL = '/' When I'm trying to access a page (signed out) like http://localhost:8000/surfboards/current/, I'm redirected to…
Dachmt
  • 2,079
  • 4
  • 29
  • 45