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

Django-registration resend activation Email with new code

I'm using django-registration with unique email addresses and I want to be able to send a second activation form to an email if requested by the user and if the account is not already active. I've found this link on Stackoverflow but I'm do not…
HenryM
  • 5,557
  • 7
  • 49
  • 105
7
votes
1 answer

How to add extra (custom) fields in Django-registration 1.0

I have been reading a lot of questions and answers regarding this, but still no good luck. For example here is a great answer but most probably doesn't apply to django-registration 1.0. My goal is to add two custom fields, namely organization and…
Iqbal
  • 2,094
  • 1
  • 20
  • 28
7
votes
3 answers

How to add placeholder to forms of Django-Registration

I am using django-registration for my project. in my registration_form.html file: {{form.username}} {{form.email}} //other fields And I want to set placeholders for each field. But this is a kind of built-in app. so I need to find the way for…
alioguzhan
  • 7,657
  • 10
  • 46
  • 67
6
votes
2 answers

How can I disable /account/register on django-registration?

[Newbie] I tried to disable django-registration by: 1.registration_allowed() I saw this method on the source registration_allowed() /registration/views but I don't know if it's what I need or how to use it. Maybe I need a variable on…
Mc-
  • 3,968
  • 10
  • 38
  • 61
6
votes
3 answers

"Permission denied" when trying to send verification email

I'm running a django website on a fedora server (Fedora release 15 (Lovelock)) using Apache and mod_wsgi. recently I tried to add a registration system using the django-registration app (version 0.7), but unfortunately I get a "[Errno 13] Permission…
mmbrian
  • 1,672
  • 2
  • 14
  • 26
6
votes
1 answer

Get django-registration and django-profile working together

I am in process to setting up a new django project and I want to use the provided apps django-registration and django-profile. I installed both of them with easy-install and managed to get the django-registration working fine. My next step would be…
Milla Well
  • 3,193
  • 3
  • 35
  • 50
6
votes
1 answer

Auto log-in and re-send email

I have a django-registration up and working. I would like to add two additional features to it and am having a bit of difficulty understanding the inner-workings of the log-in process. 1) When a user clicks the activation email, it makes the account…
David542
  • 104,438
  • 178
  • 489
  • 842
6
votes
3 answers

How to Encrypt Password before saving it to User Model Django?

I've created a user-signup page which adds users to User Model in Django But when the data is saved, the Password is not encrypted, i.e. stored as Text only. This creates a problem when the user tries to log in (as Django tries to Decrypt the…
6
votes
2 answers

django-registration can't set the "from" email address for authentication email

i've got django-registration setup and working with my application. I'm on django 1.1 and using the latest django-registration, 0.8 alpha. in case it is relevant, i'm using the fcgi method to deploy and the django-registration app is deployed in a…
w--
  • 6,427
  • 12
  • 54
  • 92
6
votes
4 answers

Adding extra fields to django-registration form

I have a model called "Organization" that I've setup as a User profile and I would like to have the fields from the "Organization" model show up on the registration page. How do I go about doing this with django-registration. # models.py class…
Garth Humphreys
  • 793
  • 2
  • 9
  • 16
6
votes
3 answers

DoesNotExist at /accounts/register/ Site matching query does not exist. (django, python)

Trying again to implement django-registration. When I try to deploy it to the heroku and to register a new user, it gives me a strange error: Traceback: #some irrelevant traceback File…
Vasile
  • 801
  • 2
  • 13
  • 31
6
votes
1 answer

Different user profiles with django-profiles & django-registration

My models.py: USER_TYPES = ( ('D', 'Demo' ), …
6
votes
2 answers

Where do I set my site url in django settings?

Ok I think I must be missing something. In settings.py I don't see the setting for absolute url for the site. I see there is MEDIA_URL. django-registration references {{ site }} which is defaulting to example.com but I'm not seeing that in any…
Derek Organ
  • 8,323
  • 17
  • 56
  • 75
6
votes
2 answers

django-registration (1048, "Column 'last_login' cannot be null")

I'm trying to use django-registration in my simple project. settings.py # DJANGO REGISTRATION ACCOUNT_ACTIVATION_DAYS = 7 AUTH_USER_EMAIL_UNIQUE = True EMAIL_HOST = 'localhost' EMAIL_PORT = 1025 EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD =…
Stan Zeez
  • 1,138
  • 2
  • 16
  • 38
6
votes
3 answers

propagating ?next= in django-registration

I have a view that has the @login_required decorator and upon pulling up the page, if you are not logged in it does send you to the login form with the proper ?next=/url/you/tried/to/see My problem is how to I pass along that ?next value to the…
ChronosLLC
  • 593
  • 3
  • 8