Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

Extending django-registration using signals

I have found here on stackoverflow a solution to extend django-registration with new fields using signals. Here's the link : http://dmitko.ru/?p=546 . I have created extended profile model, extended ...
5
votes
2answers
998 views

django-registration “remember me”

I need to implement a "Remember me" button in a login form that uses the django-registration app. Any ane can help me showing me the way for do this? Thanks
4
votes
1answer
386 views

django-social-auth django-registration and django-profiles — together

Has anyone used django-social-auth, django-registration and django-profiles together. Do they work well together? I have established social-auth but I read somewhere that django-allauth is better. ...
4
votes
2answers
187 views

Forcing Django Login Form to take username over 30 characters

I'm trying to use emails for usernames, and have got it working almost perfectly. I followed these directions: http://www.micahcarrick.com/django-email-authentication.html The problem is, my login ...
4
votes
1answer
856 views

Django-Registration: Email as username

How do I use emails instead of username for authentication using django-registration. Further how do I enforce this change once i have already installed the registration module. Do i edit like the ...
4
votes
3answers
309 views

Django email app broken lines - maximum line length (and how to change it)?

# settings.py EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend' # view.py from django.core.mail import send_mail def send_letter(request): the_text = 'this is a test of a really ...
4
votes
2answers
267 views

Django registration alternatives

I'm looking at django-registration. It's in alpha 0.8, and hasn't been updated for 12/13 months. But it seems this is what most people use? I'm just wondering if there is a production standard package ...
4
votes
1answer
1k views
4
votes
1answer
147 views

Django Registration Number of users logged in

I have an application where I would like to display the number of users that are logged into the system. Im trying to determine the cleanest way to do this that will not create a large load on the ...
4
votes
2answers
443 views

How to make multiple user types when signing up?

I'm using Django 1.2 and I want to have two user types (one for companies and one for consultants). I will either use an object in my model (something like a boolean for is_company or is_consultant) ...
4
votes
2answers
604 views

How do I set session variables at login using django-registration and auth?

I'm using django-registration to log users into my application. That part works fine. The part that I cannot figure out is how to set custom session variables when the user logs in. For instance, ...
4
votes
2answers
3k views

django+ send email in html with django-registration

im using django-registration, all is fine, the confirmation email was sending in plain text, but know im fixed and is sending in html, but i have a litter problem... the html code is showing: <a ...
3
votes
2answers
153 views

Getting `django-registration` to send you to the page you were originally trying to visit

django.contrib.auth has an awesome feature: When you try to access a page that's decorated by login_required, you get redirected to the login page with a next argument, so after you login you get ...
3
votes
1answer
147 views

Get django-registration and django-profile working together

I am in process to setting up a new django project and I want to use the provided apps django-registration and django-profile. I installed both of them with easy-install and managed to get the ...
3
votes
2answers
118 views

What/Where to modify django-registration to use with mobile broswers

I am using django-registration along side django auth for my client account creation and login. Our site will be used by moble users and desktop users. We just started tackling the idea of mobile ...
3
votes
2answers
433 views

Django-nonrel + Django-registration problem: unexpected keyword argument 'uidb36' when resetting password

I'm using Django-nonrel with registration app. Things seem to be working fine, except when I try to reset my password. When clicking on reset-password link sent to me in email, Django produces error ...
3
votes
1answer
338 views

Auto log-in and re-send email

I have a django-registration up and working. I would like to add two additional features to it and am having a bit of difficulty understanding the inner-workings of the log-in process. 1) When a user ...
3
votes
2answers
180 views

Registration in django

I am looking to add a registration page to my django project. It will need to have perhaps five or six fields. Is django-registration https://bitbucket.org/ubernostrum/django-registration/ the best ...
3
votes
2answers
329 views

django-registration, django.contrib.auth login and user “is active” flag

I'm using django 1.1. the docs http://docs.djangoproject.com/en/1.1/topics/auth/#topics-auth on the is_active flag it says This doesn’t control whether or not the user can log in. Nothing in the ...
3
votes
1answer
320 views

django registration - allows multiple users for an email id

I am trying out django-registration. I found that it allows multiple registration for same emailid. I want to prevent that. What is the best way to do that? ok, I see there is a subclass ...
3
votes
1answer
228 views

Equals sign in django-registration activation url

I am using django-registration and for some reason, when it sends the activation email, it inserts an equals sign in the third to last character as such: ...
3
votes
1answer
706 views

django-registration with paypal integration

I'm trying to figure out how to integrate django-registration with django-paypal. Being a Django n00b, I'm trying to figure out how to implement a flow like this: User signs up using ...
2
votes
1answer
36 views

How to pass extra_context to auth_views.password_change in URL handler

I have a URL handler for changing passwords, such as this: url(r'^password/change/$', auth_views.password_change, ...
2
votes
3answers
208 views

“Permission denied” when trying to send verification email

I'm running a django website on a fedora server (Fedora release 15 (Lovelock)) using Apache and mod_wsgi. recently I tried to add a registration system using the django-registration app (version 0.7), ...
2
votes
1answer
424 views

django-registration view customization

I'm using django-registration (see: https://bitbucket.org/ubernostrum/django-registration ) on one of my projects. The standard setup for the django-registration is to add a the code below in the ...
2
votes
2answers
561 views

adding extra field to django-registration using signals

I want to add a locale selection to the default django-registration. I tried to follow this tutorial from dmitko. The form shows up correctly but the additional data (locale) is not saved. I defined ...
2
votes
2answers
230 views

Simple form not validating

I have found here on stackoverflow a method to extend django's built-in authentication using signals. My base User is defined by 'email' and passwords (so no username there). So I'm trying to modify ...
2
votes
2answers
301 views

propagating ?next= in django-registration

I have a view that has the @login_required decorator and upon pulling up the page, if you are not logged in it does send you to the login form with the proper ?next=/url/you/tried/to/see My problem ...
2
votes
2answers
582 views

Installing and using django-registration

Previously I've been using some older version of django-registration which seems to be deprecated now. Because my server does not allow me to install python plugins I need to use 'registration' as ...
1
vote
1answer
41 views

Using django-registration with recaptcha on Heroku

I'd like to try Django on Heroku. I'd like user registration with recaptcha. Heroku recommends using pip. pip installs django-registration 0.7, since that's the latest released package. (0.8 has ...
1
vote
1answer
56 views

How to delay sending activation email in django_registration?

I am integrating django_paypal with my django_registration setup for which I have created a custom backend. I can't seem to find in the code where it sends the activation email. Is this located in the ...
1
vote
1answer
32 views

Django not evaluating base template in views

I'm quite new to Django and I just set up my first registration page with django-registration and everything worked well (users can register, change passwords etc.). Now I want to expand my app a bit ...
1
vote
1answer
286 views

Creating a Django Registration Form by Extending Django-Registation Application

Am trying to create a registration form by extending django-registration app and using Django Profile. I have created the model and form for the profile and when I checked through the django shell it ...
1
vote
1answer
190 views

Customized views with django-registration

I need to make a very simple modification -- require that certain views only show up when a user is not authenticated -- to django-registration default views. For example, if I am logged in, I don't ...
1
vote
0answers
138 views

CSRF problem: Django-registration app with my custom login-form in my base.html

Im using https://bitbucket.org/ubernostrum/django-registration/ for login and registration in Django. But now im trying to add an login-form in my base.html, with a simple form {% csrf_token %}... ...
1
vote
2answers
72 views

Lengthening Django Username

I'm using this snippet, that allows users to only need to enter an email address to register for my app: http://djangosnippets.org/snippets/686/ Things are almost working perfectly. The problem is ...
1
vote
0answers
297 views

django 61 'connnection refused' error on Mac OSX

I installed django-registration 0.8 and after filling the registration form I'm getting this error. Please suggest what to do now. I'm using Mac OSX and python 2.6.1 This is the error page: error at ...
1
vote
1answer
109 views

Django authentication problem - how can I force active users to setup a profile first?

I've put myself into somewhat of a pickle. I use django-registration often, and it seems to work for most situations. However, I want to require users to build their profile (eg: demographic ...
1
vote
1answer
24 views

Convert a function from many to single

I have a function from django-registration which re-sends an activation email to the given recipients. I am trying to convert the function from accepting multiple users for a given email to only one ...
1
vote
2answers
111 views

django-registration can't set the “from” email address for authentication email

i've got django-registration setup and working with my application. I'm on django 1.1 and using the latest django-registration, 0.8 alpha. in case it is relevant, i'm using the fcgi method to deploy ...
1
vote
1answer
70 views

Viewing auth_user model in Django

How do I view the contents of the auth_user model in Django? For example, I have created a model Class called EmailList within my app. And to view the email QuerySet I can do: >>> from ...
1
vote
2answers
280 views

Django-registration setup without password

I am trying to make a website, where people only put their email addresses and they are logged in with cookies and all. At a later stage, i will ask them provide password and names, but NO username ...
1
vote
1answer
791 views

django-registration auto create UserProfile

I'm using django-registration and I'm trying to connect to its signals to automatically create a UserProfile. Signal definition: from django.dispatch import Signal # A new user has registered. ...
1
vote
1answer
378 views

Django-registration ImportError: No module named signals

I am trying to write a signal listener for django-registration and I am getting the import error: no module named signals. But I could import registration. Here is my code from django.contrib.auth ...
1
vote
2answers
627 views

Adding extra fields to django-registration form

I have a model called "Organization" that I've setup as a User profile and I would like to have the fields from the "Organization" model show up on the registration page. How do I go about doing this ...
1
vote
2answers
241 views

django-registration activates user but shows error

I'm using django-registration which somehow stopped working the way it should work. I'm completely lost on this and have no idea where to start looking for the error. So what happens is, that ...
1
vote
2answers
76 views

django-registration oddity

So I downloaded the app with easy_install and it worked. I can import registration. BUT the code installed doesn't match the source code for the project, as seen in github. For example, I'm ...
1
vote
1answer
262 views

Post-methods to integrate Lazy Registration with django-registration

I'm using the tutorial at this link to do my lazy-registration, and I'm trying to combine it with django-registration. The tutorial at the lazy-registration link simply needs to call one command to ...
1
vote
1answer
209 views

Redirecting to the original page after django registration (0.7) and email activation

I've successfully integrated django-registration 0.7 into my new site but need to propagate a "?next=foo" parameter from the registration form to the activation email link so that when a user ...
1
vote
1answer
188 views

Django: Views problem with Django + django-registration + jinja

So, I have a django project that is using jinja2 rendering, and I also installed django-registration to make my life easier. I ran into the following problem: Going to homepage I render it with ...

1 2 3