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

django-registration disable activation

Is there a setting in django-registration to disable the activation? Preferably, the e-mail would still be send with something like: Thanks for your registration. Is it possible to deactivate the required account activation and how? Is it still…
Roel Veldhuizen
  • 4,613
  • 8
  • 44
  • 78
0
votes
2 answers

Django save abuser profile object when user registered

Hi I have a customUserProfile model which I will be using for storing user data specific to my app: from django.contrib.auth.models import User class UserProfile(models.Model): user = models.OneToOneField(User) ... def…
Darwin Tech
  • 18,449
  • 38
  • 112
  • 187
0
votes
2 answers

adding two registration forms django-registration

I am using django-registration app. I've two registration form A and B. A has default registration fields. And in B I've added custom fields and a signal. Following signal also execute for both registration form. That's why I added if…
user514310
0
votes
1 answer

Change validation rules in forms of 3rd part apps

I'm using a 3rd part app(django-registration), and need to modify the validation rules for my own favor. One way is to extend the form(RegistrationForm), and override the fields with my own validation rules. #registration/forms.py class…
Xun Yang
  • 4,209
  • 8
  • 39
  • 68
0
votes
1 answer

Custom django-registration backend must take exactly one argument

I am at an absolute loss here as to what I am doing wrong. I am writing a custom backend for django-registration, and as far as I can tell I'm following the instructions perfectly. What argument am I missing to make this work? Here is my error…
Matthew Calabresi
  • 487
  • 2
  • 11
  • 20
0
votes
1 answer

How to fields to the User model

I want to be able to save a picture to a user and maybe even a description, these can be optional, but how to you add to a model. I don't want to go into the souce code of django to change it, can I overide a model to add fields, if so how? how do i…
Klanestro
  • 3,185
  • 5
  • 25
  • 31
0
votes
1 answer

Django invitation login using only OAuth

I'm trying to create a site with invite only login. In addition the invited users can sign in only by using some OAuth login method. I'm using Django 1.4. I'm using apps github.com/lizrice/django-allauth and github.com/lizrice/django-invitation In…
0
votes
1 answer

Django authenticate() and login()

I'm trying to authenticate user in Django using login() and authenticate() methods. Once it is done, I redirect to authenticated landing page. And when I try to access request.user object I always get anonymous use object even though I'm…
Wiz
  • 307
  • 1
  • 6
  • 15
0
votes
1 answer

Django-registration - uncomplete stuff

I'm using django-registration and django-profiles and after having confirm the registration, I meet a 404 when I try to access to the page http://example.com/profiles/fox/ - I saw with the debug_toolbar all the queries that have been made and saw…
user1593705
0
votes
3 answers

extra context with django-registration

Am using django-registration but I have a problem. I want to get the login status of a user and pass it to all the html pages in my project. I normally just declare it in my views.py like this logged_in =request.user.is_authenticated() # get login…
flexxxit
  • 2,440
  • 5
  • 42
  • 69
0
votes
1 answer

csrf error when using django-registration

Am using django-registration for user account activation. in my registration_form.html I have {% extends "base.html" %} {% block title %} Register {% endblock %} {% load i18n %} {% block menu %}
  • flexxxit
    • 2,440
    • 5
    • 42
    • 69
  • 0
    votes
    1 answer

    where to create group and pass the permission in django

    i need to create group seekers and user register he has to automatically add to seekers models.py class Seeker(models.Model): user = models.OneToOneField(User) birthday = models.DateField() name =…
    0
    votes
    1 answer

    django-registration as an APP errors out on __init__.py

    I am trying to use django-registration package on my project as an APP. All I did was Downloaded the package from "" Copied the "registration" folder under SOWL In my project's URLs.py added (r'^accounts/',…
    user1546529
    • 45
    • 1
    • 9
    0
    votes
    2 answers

    Customizing Django Registration and django profile

    I am struggling with django-user registration from 1 day i am hereby attaching my accounts module please consider it Here is my model from django.db import models from django.contrib.auth.models import User from django.contrib import admin from…
    user1481793
    • 543
    • 2
    • 13
    • 21
    0
    votes
    2 answers

    Authentication using Email and resulted routing problems

    I'm trying to Authenticate users by their emails instead of username. I'm using django-userena and by using its Docs,etc. I set almost anything that is needed. Something like : USERENA_WITHOUT_USERNAMES = True in its setting, etc. But after signing…