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
0
votes
1 answer

Django - Integrating django-profiles (and django-registration) with django-facebook

[Django 1.5.1] I've set up django-profiles and django-registration for my small site in a way that involves a 'custom' registration backend such that during registration, a new user fills out their username, password, and profile fields in one go.…
0
votes
2 answers

Django-registration: full name not being saved

I'm having an issue making sure the full name of my users are being saved in the User record upon registration. I'm using Django 1.5 and django-registration 1.0, and while I've accomplished this before with earlier versions of both django and…
Matthew Calabresi
  • 487
  • 2
  • 11
  • 20
0
votes
0 answers

The activation and achentication flow in django

I Am using Django on my website, and using django-registartion for the activation flow. I am not quite sure if thats how it should behave. on my site , the user fill in the registration form , activation email is forward to his email. When the user…
Nuno_147
  • 2,817
  • 5
  • 23
  • 36
0
votes
4 answers

django-registration module latest version on openshift

I am hosting django-1.5 app on openshift. I need django-registration module which I have specified in requirements.txt file. The problem is that openshift is not able to find latest version django-registration-1.0 but only django-registration-0.8…
0
votes
1 answer

customise form-fields of django-registration utilising the simple.backend

I am using the django registratations.backends.simple.urls and I want to add a customised field in my registration page The simple.backend is different from the default.backend as it's lightweight and doesn't require user verification…
laycat
  • 5,381
  • 7
  • 31
  • 46
0
votes
1 answer

Debugging URL Pattern in Django

I noticed that some of my urlpatterns have attributes different from the others. Notably _urlconf_module and _urlconf_name are missing. I have been getting a ton of AttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module' errors…
Pratik Mandrekar
  • 9,362
  • 4
  • 45
  • 65
0
votes
3 answers

How to remove username from Django registration 1.0

I have customize Django 1.5 (from djangoproject docs) authentication to login with email instead of username and its working perfect, but I am using Django-registration 1.0 to register users. How do I remove the username field from django…
yaniv14
  • 691
  • 1
  • 10
  • 24
0
votes
1 answer

Url not changing , just render the template after login

The URL is not changing and data is not fetching after user login. After Login the url not changed(i expected to change to 127.0.0.1:8000/employer/home) @login_required def home(request): emp=Employer.objects.get(user=request.user) …
suhailvs
  • 20,182
  • 14
  • 100
  • 98
0
votes
1 answer

How do I configure Simple Backend in Django Registration

I need to know how to pass a success_url to the simple backend in django-registration-1.0 that uses class based views. Before 1.0 I used to have from registration.views import register url(r'^accounts/register/$', register, {'backend':…
Pratik Mandrekar
  • 9,362
  • 4
  • 45
  • 65
0
votes
2 answers

django-registration with Django 1.5

I've been trying to get django-registration to work with Django 1.5 Configurable User Models. I've seen some previous SO threads related to the error I'm having, but the solution to them doesn't seem to be working for me. The error I get…
xyzjace
  • 432
  • 1
  • 5
  • 16
0
votes
1 answer

django-registration custom backend

I have successfully implemented my auth/login custom backend, and now i am trying to implement my own django-registration custom backend. The django-registration code seems to work fine, if i use the normal authentication from contrib.auth . If not…
psychok7
  • 5,373
  • 9
  • 63
  • 101
0
votes
0 answers

Buildout and django-registration from repository for Django 1.5

I'd like to use Buildout to get django-registration with Django 1.5, and I have a custom user using MyUser(AbstractUser). I used to get it from the recipe v0.8 and it was great. Since, I switched to 1.5, remove my UserProfile and use this custom…
Dachmt
  • 2,079
  • 4
  • 29
  • 45
0
votes
0 answers

using the registration app in django python

I have followed the http://lightbird.net/dbe/forum3.html#user-registration tutorial to use the registration application in django. I assume that the registration application works because I get the register user in the database of the app, The…
user1796624
  • 3,665
  • 7
  • 38
  • 65
0
votes
0 answers

django-registration custom fields on form

I have successfully managed to extend basic django-registration form, with custom fields on the form and it works fine.What is bugging me now is, the way it works.I have defined new Backend with register method that extends DefaultBackend class…
Zed
  • 5,683
  • 11
  • 49
  • 81
0
votes
2 answers

Django-Registration: How to prevent logged in user from registering?

I've just started to use django-registration. I have two questions: How do you prevent a logged in user from going to the register page? How do you automatically sign in a user after activation? I prefer not changing any code in the app itself. …
Derek
  • 11,980
  • 26
  • 103
  • 162