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
0 answers

Additional django-registration fields

I have followed various tutorials and solutions on how to add additional fields to django-registration module. Some of them did the trick, but after I synced the database, data is not saved. Here are my files: models.py from django.db import…
ivica
  • 1,388
  • 1
  • 22
  • 38
0
votes
1 answer

Unable to save extra field on extended Django-registration module

I ve been following Dmitry tutorial to extend django-registration plugins registration with an additional field. Users can be registered now but additional field is not saved. I keep getting the error. Django Version:1.4.2 Exception Type:…
shaytac
  • 3,789
  • 9
  • 36
  • 44
0
votes
1 answer

Django-registration extra fields is not rendered

I am trying to add some extra fields on Django-registration's registration page such as "city". I followed this method but form doesn't render the extra field "city" and "terms and services" check mark. Also when i check whether view is correct via…
shaytac
  • 3,789
  • 9
  • 36
  • 44
0
votes
3 answers

how to set django root url as login url?

when using django-registration , the url confuse me a bit say i want my inidex page localhost:8000 to be a login page, but the django-registration's login url has a /login prefix, do i have to put the /login in my url like url(r'^/login/$',…
paynestrike
  • 4,348
  • 14
  • 46
  • 70
0
votes
1 answer

contents of activate template in django-registration

According to the official docs ,the registration/activate.html is Used if account activation fails. With the default setup, has the context :activation_key So,what should I put in this template?An error message?Or, an activation link…
damon
  • 8,127
  • 17
  • 69
  • 114
0
votes
1 answer

registration_complete template not shown with 0.8 version of django-registration

I was previously using 0.6 version of django-registration.Now I upgraded to 0.8 ,and some issues are cropping up in my webapp I have in the templates/registration folder ,these files needed for register(among…
damon
  • 8,127
  • 17
  • 69
  • 114
0
votes
1 answer

Passing data between templates in django?

I'm creating a website that uses registration sort of like twitter where there is a pre-registration form that leads to another full registration form. Initially, I tried this using a POST and it worked but I realized the data from the first form…
0
votes
2 answers

Where should I place the code to be executed each time a new User is created with django-registration?

I am using django-registration. I have created a class named "Statistics" with a one-to-one relation with each instance of the class User. Every time a new User is created via the /accounts/register page, I would like to be able to create a new…
Xar
  • 7,572
  • 19
  • 56
  • 80
0
votes
1 answer

Associating auth_user with a model user in django

I'm creating an application in django that will eventually allow users to post pictures. The Pictures contain a ForeignKey to the User. I want to be able to manipulate the User class as a model class as above, but I also want it to serve the…
River Tam
  • 3,096
  • 4
  • 31
  • 51
0
votes
3 answers

Django - Extra context in django-registration activation email

I'm using django-registration for a project of mine. I'd like to add some extra contextual data to the template used for email activation. Looking into the register view source, I cannot figure out how to do it. Any idea ?
Pierre de LESPINAY
  • 44,700
  • 57
  • 210
  • 307
0
votes
1 answer

django-registration urls get included but not correctly

I have developped an app called textModif. I am extending it now to include registration features. To that purpose, I use django-registration module. I can reach 127.0.0.1:8000/textModif/accounts/register/ without problem. However, when I click on…
0
votes
1 answer

How to change the post-login page using django-registration?

I am using django-registration and django-registration_defaults (for the templates) in my app. How do I change the page the user sees after he/she logs in? I looked through the documentation but was unable to find anything.
sharataka
  • 5,014
  • 20
  • 65
  • 125
0
votes
1 answer

Django-registration - How to pass the "extra_context" parameter from a subclass Form

I'm using Django Registration(https://bitbucket.org/ubernostrum/django-registration/), and I need to add some fields to the registration of users. I've made a subclass of the RegistrationForm. My "forms.py" is the following: from…
André
  • 24,706
  • 43
  • 121
  • 178
0
votes
2 answers

django-registration: Where should I put the "registration" directory?

I'm using the django-registration app from https://bitbucket.org/ubernostrum/django-registration/, and I'm a bit confused as to where I should place it. I've added "registration" under INSTALLED_APPS in settings.py (as instructed), but shouldn't the…
sgarza62
  • 5,998
  • 8
  • 49
  • 69
0
votes
1 answer

Django registration fails with schema search path in Postgres

I need to share user credentials across multiple django apps. Each app is completely different and serves different purposes, but I want a user to only have to register once in order to use any of the apps. I have managed to set this up by defining…
Ries
  • 2,844
  • 4
  • 32
  • 45