Django-registration is a pluggable django app designed to make allowing user signups as painless as possible.
0
votes
1answer
15 views
django-registration with Django 1.5
I've been trying to get django-registration to work with Django 1.5 Configurable User Models.
I've seen some previous SO threads related to the error I'm having, but the solution to them doesn't seem ...
0
votes
1answer
26 views
Django 1.5: How to make in django-registration email a unique field?
I use Django 1.5 + django-registration 0.9...
How to make email field unique in model User?
from registration.forms import RegistrationFormUniqueEmail
url(r'^accounts/register/$', ...
1
vote
1answer
76 views
how to use custom profiles with django-registration
I'am using a custom user profile with Django 1.5 and i'am trying to use the lastest django-registration version with it but I always get an error when running the sync command.
CommandError: One or ...
0
votes
1answer
23 views
django-registration custom backend
I have successfully implemented my auth/login custom backend, and now i am trying to implement my own django-registration custom backend.
The django-registration code seems to work fine, if i use the ...
1
vote
1answer
81 views
How to use different view for django-registration?
I have been trying to get django-registration to use the view RegistrationFormUniqueEmail and following the solution from this django-registration question. I have set my urls.py to
from ...
0
votes
1answer
55 views
Django registration login redirection
With django-registration, I have in settings.py:
LOGIN_REDIRECT_URL = '/'
When I'm trying to access a page (signed out) like http://localhost:8000/surfboards/current/, I'm redirected to ...
1
vote
2answers
43 views
Django: django-registration reverse lookup fails
I'm using django-registration and in my settings.py I have set the login and logout urls as
LOGIN_URL = '/users/login/'
LOGOUT_URL = '/users/logout/'
and in the urls.py I have set
url(r'^users/', ...
0
votes
0answers
30 views
What's the least worst fork of django-registration?
So django-registration is ... pretty barebones, and has a ton of forks.
Are there any that people consider "best," and that are very easy to install and skin, and work out of the box?
0
votes
0answers
76 views
Buildout and django-registration from repository for Django 1.5
I'd like to use Buildout to get django-registration with Django 1.5, and I have a custom user using MyUser(AbstractUser). I used to get it from the recipe v0.8 and it was great. Since, I switched to ...
1
vote
1answer
502 views
django-registration No module named simple
I'm trying to install django-registration on my project using this tutorial:
http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/
but I get this error:
ImportError at /
No ...
0
votes
1answer
61 views
Django-registration: How to make account creation ask for first/last name
I'm using the Django-Registration package to have users create accounts, authenticate them and log in to my webapp.
However, the form/view for account creation doesn't ask the user for a ...
0
votes
0answers
31 views
django-registration empty new_password
I'm using django-registration to handle user registration.
the problem I'm facing is an empty {{ new_password }} on my password_reset_email.html template.
I've added password_reset_email.html under ...
0
votes
0answers
34 views
django testing framework
I recently started using django testing framework and i am running into some problems.
I want to use django-registration module to register a new user and login. I know i can achieve this with a
...
0
votes
0answers
65 views
using the registration app in django python
I have followed the http://lightbird.net/dbe/forum3.html#user-registration tutorial to use the registration application in django.
I assume that the registration application works because I get the ...
0
votes
0answers
90 views
django-registration custom fields on form
I have successfully managed to extend basic django-registration form, with custom fields on the form and it works fine.What is bugging me now is, the way it works.I have defined new Backend with ...
0
votes
2answers
92 views
Django-Registration: How to prevent logged in user from registering?
I've just started to use django-registration. I have two questions:
How do you prevent a logged in user from going to the register page?
How do you automatically sign in a user after activation?
...
0
votes
0answers
71 views
django-registration TypeError: unexpected keyword argument
In my struggle to get this working another problem just decided to jump on my back. I was following dmitko's solution to extend basic django-administration form explained here link. Here are my files ...
0
votes
0answers
42 views
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 ...
1
vote
1answer
338 views
Using django-bootstrap-toolkit with a django-registration field to remove labels
I'm fairly new to both django and django-bootstrap-toolkit
I am trying to style a login form I have functioning with django-registration and haven't been able to figure out how to full stylize the ...
0
votes
1answer
82 views
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 ...
1
vote
1answer
90 views
Registration Form Unique Email
I am using django-inspectional-registration which is based on the official django-registration.
I would like to ensure the uniqueness of the User's email field but I while I am using:
...
2
votes
3answers
148 views
How to display a post registration welcome message when using both django-registration and django-socialauth?
This is a pretty trivial question but I must be missing something because I can't come up with a solution I'm happy with.
I'm using two libraries to handle registration, django-registration for the ...
1
vote
1answer
82 views
django-registration vs scratch registration implementation for admin-activated accounts
I need to implement a fairly simple registration workflow:
User fills a registration request (form).
Admin(s) recieves a notification about the registration request. (maybe)
Admin(s) activates ...
0
votes
0answers
63 views
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 ...
1
vote
2answers
139 views
Django - Extending the registration-form template don't show the fields
Im trying to insert the registration-form template from django-registration in another html document.
The original Registration template it's working perfectly fine and users are saved in the DB:
...
1
vote
1answer
30 views
How do I set a default group with django-authopenid?
I have a django app that uses django-authopenid as the sole registration method. I have registration in my installed apps, which django-authopenid uses. An ideal solution would allow me to run ...
0
votes
0answers
42 views
sudden syntax error in django-registration
I'm running my site through its registration paces, and for some reason the registration module is now throwing a syntax error. It appears that after visiting the URL below to activate the account, ...
1
vote
1answer
267 views
Extending the user model with Django-Registration
Django version: 4.0.2
Django-Registration version: 0.8
App name: userAccounts
PROBLEM:
Im trying to create a user type called professor extending the user model. I can complete the registration ...
0
votes
1answer
113 views
Using django-registration forms in custom templates
I'm trying to create an account settings page for logged-in users. One of the things users should be able to do is to change their password.
I'm using django-registration and it provides a password ...
0
votes
3answers
175 views
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 ...
2
votes
2answers
166 views
Python/Django django-registration add an extra field
I have read a lot about how to add an extra field when using Django-registration, for example here, here and here. The code snippets are:
forms.py (from the registration app)
class ...
0
votes
1answer
30 views
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 ...
0
votes
1answer
62 views
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 ...
0
votes
1answer
118 views
Django-registration activate account but template shows error in activation
I am new to Django and I included django-registration to my project.
It works great except that when a user click on the activation link, his accounts is activated but the user is redirected to a ...
0
votes
1answer
82 views
Django-registration limit to specific domain email address
fairly new to Django and had a question about Django-registration.
I've successfully got it up and registering users correctly with email validation, and now what I would like to do is modify the ...
0
votes
0answers
48 views
How to use django registration in bulk, based on user information present in a database?
I have implemented django registration and it works very well. However, I also want to allow similar authentication to users whose information (name, email id) I have in my database. How do I get ...
0
votes
1answer
46 views
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 ...
1
vote
2answers
127 views
django-registration: how do I check whether the user is logged in before displaying a page
I followed this page to set up a django registration site. It's pretty awesome, and registration and authentication are nicely wrapped.
But, it doesn't show me, how do I check if a user is logged ...
0
votes
1answer
75 views
Validate Custom Email Domains with Django-Registration
I saw a version of JQuery EDU validation here but I'd love to use django-registraion to check a full domain @someschool.edu or @alumni.someschool.edu
Any ideas? Thanks for your help.
0
votes
1answer
66 views
Redirect after login not working
I've been searching around but can't figure out why the redirection after login is not working as expected.
I successfully login at http://localhost:8000/accounts/login/. After that I'm always ...
2
votes
1answer
715 views
Which is more flexible? django-registration or django-userena
I am looking to users of django-userena and django-registration (which I think is more popular) to answer this. I have checked out the docs for both and I am still not completely sold on either ...
1
vote
2answers
192 views
Django-registration with custom backend: how to return error message on register()
I'm using a custom backend (subclassed django-registration's SimpleBackend).
I override the register() method, because I need to do some processing during the registration (for example, communicate ...
0
votes
2answers
58 views
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 ...
5
votes
2answers
799 views
Django-registration - no module named simple error
I've found that if you use version 1.5 of Django that the django-registration module breaks since in the latest dev version of django, the simple.py class has been removed.
1
vote
1answer
61 views
Django URLconf including: package imports not working
I'm making a simple django site, for which I'm using the django-registration extension. I should probably add that I have just copied the django-registration source to my project as if it was my own ...
0
votes
1answer
106 views
Get user information in django templates
What's the best way to get user information from a django template?
For example, if I just want to, for example:
If the user is logged in, display "Welcome [username]"
Otherwise, display the login ...
0
votes
0answers
110 views
How to make OneToMany relation over django-tastypie-mongoengine with django-registration?
Here are my resources:
class UserResource(resources.MongoEngineResource):
ratings = fields.ReferenceField(to='api.ActivityResource', attribute='ratings', full=True)
class Meta:
...
1
vote
1answer
201 views
Already Registered at /appname/: The model User is already registered
I'm trying to connect the django.contrib.auth User with my own UserProfile, and I'm getting an 'AlreadyRegistered' error when I go on the site.
Here's the traceback:
Environment:
Request Method: ...
0
votes
1answer
110 views
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 ...
1
vote
2answers
94 views
Temporarily upload profile image in Django during registration?
In a Django application, during registration, I want the user to be able to see the profile image he/she selects, rather than just see a path as done purely using django forms (for an example of what ...

