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

better way to authenticate user login in Django?

I came across these two ways of authenticating username and password in Django. which is preferred method and why? One way: from django.contrib.auth import authenticate, login, logout if request.method == 'POST': form =…
eagertoLearn
  • 9,772
  • 23
  • 80
  • 122
0
votes
2 answers

Using nginx/fcgi/django, I have form posts that give a 504 gateway time-out

I have an app that uses Django with FCGI on nginx. I'm using the third-party apps like James Bennett's django-registration and django-messages from the Pinax Project. Both of these apps have forms that are submitted and save data into the database,…
aezell
  • 1,532
  • 14
  • 17
0
votes
1 answer

Django-registration not registering

I followed this guide to extend registration in Django and it all seemed working until I clicked register and nothing happens. I checked in the command line with sql and table exists as per specification, however when I try to view items with…
rodling
  • 988
  • 5
  • 18
  • 44
0
votes
1 answer

django-registration 1.0 with Django 1.6 and Python 3.3.4

I'm trying to upgrade a webapp called courses from Django 1.4 to 1.6 with django-registration 1.0. None of the other django-registration threads seem to have anything relating to this problem. I'm running unit-tests via python manage.py test courses…
Chris McGinlay
  • 285
  • 2
  • 10
0
votes
1 answer

django-registration "reset" redirects to "login"?

django-registration 'reset' doesn't get processed Using django-registration 1.0 under Django 1.6 . Everything (register, login, logoff, change) works as it should except "reset" which just redirects to the login form. My urls.py looks like this…
glaucon
  • 8,112
  • 9
  • 41
  • 63
0
votes
1 answer

Why is django 1.6 setting "form" to "none" on the contrib.auth.views.password_reset_confirm view?

I'm using django 1.6 and django-registration 1.0. I had to patch the urls on django-registration since they haven't released their update as of Feb 19, 2014. All of the password reset url/views have worked except for password_reset_confirm. On my…
teewuane
  • 5,524
  • 5
  • 37
  • 43
0
votes
1 answer

Login from registration app failed in CSRF verification

I'm trying to use Django-registration, but I'm getting this error for login: Forbidden (403) CSRF verification failed. Request aborted. This is my form:
0
votes
1 answer

Unable to extend a simple form with django-registration (NotImplementedError at /accounts/register/)

I'm trying to use django-registration in my project, and I have to add two extra fields in registration form. My django version is 1.6.2 and python 2.7. My urls.py: from django.conf.urls import patterns, include, url from registration.views import…
errata
  • 5,695
  • 10
  • 54
  • 99
0
votes
1 answer

Django 1.5, django-registration 1.0: "No module named backends.default.urls"

I am: Django 1.5, django-registration 1.0; DEV environ is windows and PROD environ is an EC2 instance with Ubuntu12.4. I am getting the error: No module named backends.default.urls in both PROD and DEV environs. However, in DEV, the one time it…
0
votes
2 answers

django-registration additional field in signup form

I am using django registration form and I want to add an extra field age to sign up form and i want to save that field to my model named profile.How can i do it.What will be my view? my models.py class Profile(models.Model): age =…
Thameem
  • 3,426
  • 4
  • 26
  • 32
0
votes
1 answer

Error on account activation django_registration_email

I've implemented authentication on my application using django_registration and django_registration email. Here is my code: settings.py INSTALLED_APPS =…
Wedava
  • 1,211
  • 2
  • 16
  • 30
0
votes
1 answer

Django - how to send "POST" information from one view to another

I have a registration form and if the registration form is filled in correctly and is valid, I want to automatically log the user in. The login view is at the URL /login/ and this is the login view which that URL is linked to (it's the generic…
0
votes
1 answer

How do I change the default username for satchmo registration?

Since it seems that users are allowed to use their usernames to login instead of only email, I want to make the user name default to the email address. How do I achieve this? I'm assuming that I have to override the model somewhere.
Lunyx
  • 3,164
  • 6
  • 30
  • 46
0
votes
1 answer

How can I make imports that will satisfy django-registration's 'activate' and 'register' calls?

I have boilerplate code in my urls.py, taken from http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/: url(r'^activate/(?Pw+)/$', activate, {…
Christos Hayward
  • 5,777
  • 17
  • 58
  • 113
0
votes
1 answer

unbound method save() when I try to add name and surname field to db during registration

My views.py is below def register(request): if request.GET.get('name')and request.GET.get('surname')and request.GET.get('username') and request.GET.get('userpassword') and request.GET.get('repassword') and request.GET.get('email'): name=…
ealperen
  • 11
  • 2