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-registration for 1.6: The requested URL /accounts/login was not found on this server

I downloaded the new version of Django-registration which works with Django 1.6: https://github.com/macropin/django-registration#egg=django-registration Installed it, copied registration folder to the project folder, executed syncdb. In…
kvadrat
  • 135
  • 2
  • 11
0
votes
1 answer

How do I change the “site” name in django-registration template email?

I have email template: Activate: {{ site }}/accounts/activate/{{ activation_key }}/ I want to set {{site}} to localhost. How can I do this without django-admin panel. I want to use CONSTANT for this.
0
votes
2 answers

Django registration [Errno 10013] error

so for some reason this error([Errno 10013] An attempt was made to access a socket in a way forbidden by its access permissions), keeps occurring. when i try to use registration in Django. I am using windows 7 and pycharm IDE with django 1.65. I…
jasan
  • 11,475
  • 22
  • 57
  • 97
0
votes
0 answers

Django registration error after switching interpreter to Python 2.78

I initially had python 3.4 installed with django 1.65. But i searched and found out Django registration doesn't work with python 3. So I downloaded python 2.78 and even uninstalled python 3.4. However When i am on url…
jasan
  • 11,475
  • 22
  • 57
  • 97
0
votes
0 answers

django registration auth - how to check valid input?

Could you review my code for improvement? Essentially, it works but it isn't user friendly. For example,(1) If the user puts in an invalid field, it doesn't tell them what field is invalid. (2) If a user tries to register (sign up) with an existing…
vt2424253
  • 1,387
  • 4
  • 25
  • 39
0
votes
0 answers

Django - Automatically create object instances when user is created

I would like to automatically create some objects instance when a new user is created. I think using signals would be the best strategy but it seems there is no signal attached to user creation. I am also using django-registration, but I would…
Below the Radar
  • 7,321
  • 11
  • 63
  • 142
0
votes
2 answers

Django Registration with Custom User Model

So I am using a custom user model accounts.player and i'm also using django-registration in my project. With the custom model it now encounters an error. I know I could just write my own registration code but is there a way to use the custom model…
Callum
  • 1,136
  • 3
  • 17
  • 43
0
votes
2 answers

Django: Django-Registration Password Reset Error

I just installed the Django-Registration app and I have everything working except I can not figure out the password reset methods. Whenever I navigate to accounts/password/reset/ I get the following error: Reverse for 'password_reset_done' with…
RedShirt
  • 855
  • 2
  • 20
  • 33
0
votes
1 answer

Django admin interface: Invalid password format or unknown hashing algorithm

I've made a register and login function which saves a user data to the database using the django User object. But when i register a user, the password linked to the user doesn't get hashed properly. This means that i have this error in the django…
Koronag
  • 157
  • 1
  • 15
0
votes
0 answers

Re-activate a user in django-registration

I am looking to implement django-registration for a project but am not sure if it will work out of the box for this use case. I am creating users as soon as I have their e-mail address (whether or not they actually are creating an account). At some…
0
votes
1 answer

Django-Registration: How to alter the form (need to add submit button that works!)

So I am trying to alter one of the forms from Django-registration: an app I installed via pip. As stated in the docs, I was to created a registration/registration_form.html and use form as my context:

This is the registration…

ApathyBear
  • 9,057
  • 14
  • 56
  • 90
0
votes
1 answer

Django: Having trouble with nesting URLS

I am trying to connect my urls together after installing the django-registration app My main project is called Club , here is club/club/urls.py: from django.conf.urls import patterns, include, url from blog import views # Uncomment the next two…
ApathyBear
  • 9,057
  • 14
  • 56
  • 90
0
votes
2 answers

Django: installing software with pip, then editing the apps installed

So I recently installed the django-registration app located here: https://django-registration.readthedocs.org/en/latest/index.html . I installed it using pip and have since been playing around with it. It being the first Python/Django open source…
ApathyBear
  • 9,057
  • 14
  • 56
  • 90
0
votes
1 answer

how to pass account information to django template in django-registration?

I want to pass the account information to the template so that when an user account is activated, there is a message saying "your account is activated; please log in now" with a link below. if the activation days have expired, it must say…
0
votes
2 answers

Django - using django-registration app with signals

Ok, so I've built a basic Django Project and successfuly installed the django-registration app - http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/ I want to expand a User to include information like Birthday, Profile…
Mihai Zamfir
  • 2,167
  • 4
  • 22
  • 37