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

Add Django Variables in Email Template

I have a relatively simple objective: send email to Django admins when users register and activate their accounts that contain user information, like username, email, etc. I am using django-registration for handling the registration process. I then…
nicorellius
  • 3,715
  • 4
  • 48
  • 79
0
votes
1 answer

django-registration, error 500 after submitting the form

I am trying to make signup form using django-registration app. But, when I submit registration form I get message "Server Error (500)"? Please, help me - what I do wrong? templates/registration/registration_form.html:
bo858585
  • 117
  • 2
  • 10
0
votes
2 answers

Trouble with Django Logout Page, django-registration logout.html Template Form Fields

I am using django-registration. After getting it working, I went on extending views and forms for field customization using Bootstrap. I have this working for everything except the logout page. In the default method, I simply built the form by…
nicorellius
  • 3,715
  • 4
  • 48
  • 79
0
votes
1 answer

How to migrate this code for Django-registration to version 1.0 of the module?

I have a Django application running an older version Django-Registration. In that application, I'm overriding the normal registration form with a custom one that I have created like so: from myApp.forms import extendedRegistrationForm # using my…
Saqib Ali
  • 11,931
  • 41
  • 133
  • 272
0
votes
0 answers

Why can't I override Django-registrations's default login form?

In my Django application, I'm overriding the normal registration form with a custom one that I have created: from myApp.forms import extendedRegistrationForm # using my registration form to override the default url ( r'^accounts/register/$', …
Saqib Ali
  • 11,931
  • 41
  • 133
  • 272
0
votes
1 answer

Django signup views

I want to create a signup view. Here, my code: from django.shortcuts import get_object_or_404, render, redirect from django.contrib.auth import authenticate, login as auth_login from django.contrib.auth.models import User # create a function to…
0
votes
1 answer

Django 1.5.5 Creation custom user model without login field (email as login and password)

I use django 1.5.5, django registration 1.0 How can I create model that have no login field but use email field instead login? I tried to use model without Login but django admin was crappy. I could not save or edit data or even add new user. So I…
0
votes
1 answer

django-registration with is_super_user on by default.

i have successfully implemented django-registration and it's working fine. for some teasing reasons, i want all the users registering should be able to be super_users( i.e turn on super_user flag in django users model). how can i do this with…
rgm
  • 1,241
  • 2
  • 16
  • 33
0
votes
1 answer

How can I link a registered user from django-registration to the model of my app?

I plugged the django-registration app into my project and it works great. New Users can register and log in. In my app, however, I want to supply a whole profile to the user and use the information which I got through django-registration. How can I…
Jon
  • 11,356
  • 5
  • 40
  • 74
0
votes
1 answer

django-registration where to set domain and protocol variable?

in my django app I am using django-registration app. I was testing registration few months ago and it worked fine. I have not editing nothin in django-registration since then, but somehow it's not working anymore. Well registration mail does not…
Lucas03
  • 2,267
  • 2
  • 32
  • 60
0
votes
2 answers

Inconsistent error message

I use the django-registration module, but this is a django/python question. In a custom view: def register(self, request, **cleaned_data): firstname, lastname, email, password = cleaned_data['firstname'], cleaned_data['lastname'],…
user777466
  • 991
  • 2
  • 13
  • 21
0
votes
3 answers

NotImplementedError in django-registration when registering a user

I have a django app and trying to use django-registration app in it. And below are my settings and codes settings.py INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', …
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
0
votes
1 answer

Customize error messages on django-registration

I have a question about django-registration (https://bitbucket.org/ubernostrum/django-registration), but I can't find their issue tracker or a mailing list for it, so I'll try my luck here. My application enables login via OpenID and…
Tony Lâmpada
  • 5,301
  • 6
  • 38
  • 50
0
votes
1 answer

Django custom user VS user profile

I'm currently using Django 1.5.1 and using a custom user as described in the official documentation. I realized everything is stored under one table, the auth_user one. My question is, why is it better to have everything in one big table, instead of…
Dachmt
  • 2,079
  • 4
  • 29
  • 45
0
votes
1 answer

How to setup the url redirect correctly after user registration and login in django?

So, I have setup django-registration's simple backend where the user registers and is immediately logged in to the display to my other django app fileuploader. Here is the urls.py: from django.conf.urls import patterns, include, url # Uncomment the…