I\'m using django-registration (see: https://bitbucket.org/ubernostrum/django-registratio开发者_Python百科n ) on one of my projects. The standard setup for the django-registration is to add a the code
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 missing
I don\'t under stand how开发者_如何转开发 django-registration is handling activation failure? Say, a user just uses a dummy activation key and invokes the url in browser /activation/\"key\". Now, acti
I have a Django application that is using django-registration to handle new user registration. I would like to add date of birth to the registration form so that I can check the user\'s age before dec
I am making an web application that have to be integrated with other system using SOAP for communication between them. The problem is that I need to have users and store application specific informati
Docs say : ``success_url`` The name of a URL pattern to redirect to on successful acivation. This is opt开发者_如何学Goional; if not specified, this will be
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.
Ok I think I must be missing something. In settings.py I don\'t see the setting for absolute url for the site. I see there is MEDIA_URL.
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 modi
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 .