Re: django registration error

2020-02-05 Thread N Rupesh
On Wed, Feb 5, 2020 at 3:40 PM wrote: > > > > > You might not have applied migrations > > python manage.py makemigrations > > python manage.py migrate > > > > *From: *nrupesh08 > *Sent: *Wednesday, February 5, 2020 2:18 PM > *To: *Django

Re: django registration error

2020-02-05 Thread N Rupesh
okay On Wed, Feb 5, 2020 at 3:40 PM wrote: > > > > > You might not have applied migrations > > python manage.py makemigrations > > python manage.py migrate > > > > *From: *nrupesh08 > *Sent: *Wednesday, February 5, 2020 2:18 PM > *To: *Django

RE: django registration error

2020-02-05 Thread dhruvashah1221999
  You might not have applied migrationspython manage.py makemigrationspython manage.py migrate From: nrupesh08Sent: Wednesday, February 5, 2020 2:18 PMTo: Django usersSubject: django registration error  -- You received this message because you are subscribed to the Google Groups "Django

Re: django registration error

2020-02-05 Thread maninder singh Kumar
Are you using mutiple databases and perhaps django is looking in the wrong place for auth_user ? could you post the entire error and your settings.py file [image: --] Maninder Kumar [image: http://]about.me/maninder.s.kumar On Wed, Feb 5,

django registration error

2020-02-05 Thread nrupesh08
[image: error.png] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: Looking for Django registration API

2019-08-22 Thread Rahul Sharma
Try django-rest-auth . This is what I have used over the years. Easy to understand and implement. Hope it helps you. On Thursday, August 22, 2019 at 12:15:12 AM UTC+5:30, Sandip Nath wrote: > > Are there any ready to use user

Re: Looking for Django registration API

2019-08-22 Thread Rahul Sharma
Try django-rest-auth . This is what I have used over the years. Easy to understand and implement. Hope it helps you. On Thu, Aug 22, 2019 at 1:06 PM Suraj Thapa FC wrote: > Search djoser > > On Thu, 22 Aug, 2019, 12:15 AM

Re: Looking for Django registration API

2019-08-22 Thread Suraj Thapa FC
Search djoser On Thu, 22 Aug, 2019, 12:15 AM Sandip Nath, wrote: > Are there any ready to use user authentication API for Django where user > can register not only with username, password and email but also with date > of birth, profile-url, picture etc? > > -- > You received this message

Looking for Django registration API

2019-08-21 Thread Sandip Nath
Are there any ready to use user authentication API for Django where user can register not only with username, password and email but also with date of birth, profile-url, picture etc? -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Installing and using django registration – backends

2019-01-09 Thread Yuval Bachrach
ror: No module named 'django_registration.backends' [image: django registration backends.jpg] There were suggestions at web to install django_registration using --user flag of pip install: Tried that: It does not help On Wed, Jan 2, 2019 at 8:02 PM Yuval Bachrach wrote: > Inst

Re: Installing and using django registration – backends

2019-01-04 Thread Yuval Bachrach
ou try like ths >> urlpatterns = [ >> # Other URL patterns ... >> url(r'^accounts/', include('registration.backends.activation.urls')), >> # More URL patterns ... >> ] >> By the way, this is the documentation of Django Registration ,Hopefully >> it may he

Re: Installing and using django registration – backends

2019-01-03 Thread Yuval Bachrach
t; urlpatterns = [ > # Other URL patterns ... > url(r'^accounts/', include('registration.backends.activation.urls')), > # More URL patterns ... > ] > By the way, this is the documentation of Django Registration ,Hopefully > it may help you. > > https://media.readthedocs.o

Re: Installing and using django registration – backends

2019-01-03 Thread Rahul Verma
Can you try like ths urlpatterns = [ # Other URL patterns ... url(r'^accounts/', include('registration.backends.activation.urls')), # More URL patterns ... ] By the way, this is the documentation of Django Registration ,Hopefully it may help you. https://media.readthedocs.org/pdf/django

Installing and using django registration – backends

2019-01-02 Thread Yuval Bachrach
Installing and using django registration – backends The package is installed (pip) and migration is clean. Next steps at the documents: Adding to urls at urlpatterns but I get error messages (details below). So I am stacked at the very beginning. As a Django beginner, I would be happy to get

Re: template location for django-registration framework

2018-12-31 Thread Yuval Bachrach
emplates under >> the django admin site >> -- site-packages/django/contrib/admin/templates/registration/ >> >> On Saturday, December 29, 2018 at 10:22:11 AM UTC-5, Yuval Bachrach wrote: >>> >>> I have installed "django-registration:" and no

Re: template location for django-registration framework

2018-12-30 Thread Yuval Bachrach
unts-login-django-auth-setup > > You can either create your own pages or copy the whole templates under the > django admin site > -- site-packages/django/contrib/admin/templates/registration/ > > On Saturday, December 29, 2018 at 10:22:11 AM UTC-5, Yuval Bachrach wrote: >> >

Re: template location for django-registration framework

2018-12-29 Thread Zhe Li
/templates/registration/ On Saturday, December 29, 2018 at 10:22:11 AM UTC-5, Yuval Bachrach wrote: > > I have installed "django-registration:" and now follow " > https://django-registration.readthedocs.io/en/3.0/quickstart.html; > > I have set URLs as explained

template location for django-registration framework

2018-12-29 Thread Yuval Bachrach
I have installed "django-registration:" and now follow " https://django-registration.readthedocs.io/en/3.0/quickstart.html; I have set URLs as explained (see below) but failed to tell django where to find the templates. What do I need to do to have django find the templates?

Re: Fail to create Django registration form with email and password only

2018-08-20 Thread Mikhailo Keda
No need to change Django registration/authentication, you need to use it. Check this example - https://chat.mkeda.me/login?next=/ source code for registration/authentication - https://bitbucket.org/voron-raven/chat/src/f78b6531652f866109dbfa2f8aeffac6c0f1bb32/core/views.py#lines-247:283 Just

Fail to create Django registration form with email and password only

2018-08-19 Thread Yan Cheng Cheok
Creating basic registration/ authentication in Django is insanely hard. After many tries, I manage to create basic registration/ authentication in Django using username and password. [image: enter image description here] The code is shown in

Is it possible have Django registration and content databases on 2 different servers?

2018-01-12 Thread NoviceSortOf
Is it possible have Django registration and content databases on 2 different servers? I would like to decouple the registration from the content management system, and am wondering if its possible to place them on 2 different servers. What caveats, guidelines and methods are available

Re: TemplateDoesNotExist for django-registration (but it does)

2017-05-13 Thread farah_chaaban
Hello i have the same problem. please help me -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group,

Re: django registration issues

2017-05-12 Thread Antonis Christofides
Hi, not what you ask, but it isn't a good idea to have a copy of django-registration (or any third-party package) in your project directory; instead, just "pip install django-registration-redux". Regards, A. Antonis Christofides http://djangodeployment.com On 2017-05-12 17:09,

django registration issues

2017-05-12 Thread farah_chaaban
I am trying to download registration application from github but i have some problems: - git clone https://github.com/macropin/django-registration.git - python install setup.py - i copied the registration folder to my project folder Than : *Url.py* from django.conf.urls import * from

Integrating django-registration-redux along with custom_user: Prevent user registration if UserProfile is not valid

2016-10-20 Thread njan
I'm trying to use django-registration-redux along with custom_user. I have added both apps to settings.py My main urls.py is as given below from userprofile.forms import UserProfileForm from registration.backends.default.views import RegistrationView urlpatterns = [ url(r'user/register

Re: How to test email-verification in django-registration-redux application on localhost?

2015-06-09 Thread Luis Zárate
Put SITE_ID = 1 in your settings file to fix this error 2015-06-09 7:01 GMT-06:00 akshat : > You're using the Django "sites framework" without having set the SITE_ID > setting. Create a site in your database and set the SITE_ID setting or pass a > request to

How to test email-verification in django-registration-redux application on localhost?

2015-06-09 Thread akshat
I have made an django app which uses Django-Registration-redux application to registration and email verification of users.I am using 'Sites' framework also.How ever when I click register button email is not sent but instead I get this error message - You're using the Django "sites fram

Re: Question on auto-generating username while using django registration

2015-05-01 Thread Babatunde Akinyanmi
d that username is a requirement for the django registration app. I’m wondering if it’s possible to auto generate the username after the user make entries in the other fields (i.e. name, city, email, password)? > > OR does django registration necessarily require the username to be cre

Question on auto-generating username while using django registration

2015-04-30 Thread emeka2106
Hi there - I’m in the process of building a site with django, and I noticed that username is a requirement for the django registration app. I’m wondering if it’s possible to auto generate the username *after* the user make entries in the other fields (i.e. name, city, email, password

Re: Django Registration

2014-09-29 Thread Collin Anderson
def get_success_url(request, user): return settings.REGISTRATION_EMAIL_REGISTER_SUCCESS_URL or even more straighforward: def get_success_url(request, user): return '/accounts/register/complete/' -- You received this message because you are subscribed to the Google Groups "Django

Django Registration

2014-09-29 Thread Tsolmon Narantsogt
Hello folks *I got this error Django Registration 'str' object is not callable* INSTALLED_APPS = ( .. 'registration', ) REGISTRATION_EMAIL_REGISTER_SUCCESS_URL = '/accounts/register/complete/' in urls.py get_success_url=getattr( settings

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-28 Thread rush
Hi guys,Looks like django-signup ( https://bitbucket.org/fcoelho/django-signup/ ) may be interesting for you. It is based on django-registration and as for now the last commit was about a 5 days ago.-- wbr,rush.   24.07.2014, 19:21, "Oscar Carballal" <piz...@gmail.com>:Same for m

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-24 Thread Oscar Carballal
ábado, 19 de julio de 2014 02:17:24 UTC+2, Russell Keith-Magee > escribió: > >> >> On Fri, Jul 18, 2014 at 8:31 PM, Santiago L <santiag...@gmail.com> wrote: >> >>> Hi, >>> >>> Some weeks ago I noticed that django-registration is n

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-24 Thread Scot Hacker
On Friday, July 18, 2014 5:31:14 AM UTC-7, Santiago L wrote: > > Hi, > > Some weeks ago I noticed that django-registration is not longer maintained > by > its creator: > I've switched to django-allauth for my Django projects, which does an equally superb job of s

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-23 Thread Santiago L
El sábado, 19 de julio de 2014 02:17:24 UTC+2, Russell Keith-Magee escribió: > > > On Fri, Jul 18, 2014 at 8:31 PM, Santiago L <santiag...@gmail.com > > wrote: > >> Hi, >> >> Some weeks ago I noticed that django-registration is not longer >> main

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-18 Thread Ovnicraft
On Fri, Jul 18, 2014 at 7:31 AM, Santiago L <santiago.lam...@gmail.com> wrote: > Hi, > > Some weeks ago I noticed that django-registration is not longer maintained > by > its creator: > > quoting https://bitbucket.org/ubernostrum/django-registration/wiki/Home > >

Re: Alternative to django-registration (unmaintaned since September 2013)

2014-07-18 Thread Russell Keith-Magee
On Fri, Jul 18, 2014 at 8:31 PM, Santiago L <santiago.lam...@gmail.com> wrote: > Hi, > > Some weeks ago I noticed that django-registration is not longer maintained > by > its creator: > > quoting https://bitbucket.org/ubernostrum/django-registration/wiki/Home > >

Alternative to django-registration (unmaintaned since September 2013)

2014-07-18 Thread Santiago L
Hi, Some weeks ago I noticed that django-registration is not longer maintained by its creator: quoting https://bitbucket.org/ubernostrum/django-registration/wiki/Home > django-registration > I stepped down as maintainer of this application in September 2013. Pull > requests, issues and

Re: UserProfile.user" must be a "User" instance. django-registration

2014-06-10 Thread Jimish Parekh
are requesting back you can get User Object back If these answers are wrong and feels like bullshit then pls ignore... I am also trying to learn:) Thanks, On Monday, July 2, 2012 6:47:03 PM UTC+5:30, Nikhil Verma wrote: > > HI All > > I am applying an django-registration in my app.

Re: UserProfile.user" must be a "User" instance. django-registration

2014-06-09 Thread 曾阿牛
I have the same problem. Nikhil Verma於 2012年7月2日星期一UTC+8下午9時17分03秒寫道: > > HI All > > I am applying an django-registration in my app. So i create a UserProfile > Model and a ModelForm after clicking on the email link > the user is redirected to the ModelForm page of UserPro

Using custom user (AbstractUser) and django-registration

2014-06-05 Thread Arnaud Vandecasteele
Hi guys, I've been trying the whole day to use django-registration with a custom user model. Basically this is what I did : *1/ Create a custom user model (models.py)* class customUser(AbstractUser): company_name = models.CharField(max_length=255) --> My first question is do I need to

Django Registration Customization Problem

2014-03-24 Thread Abbas Sheikh
Hello All, I want the following registration workflow in my app. 1. User enters his email and is automatically logged-in to the app. The user can play with the app, and it would logout the user after 30 minutes. 2. Meanwhile an activation email goes out to user's email that would

Combining example Polls app with django-registration

2013-10-10 Thread Alex Koudrin
I'm learning Django (Ubuntu 13.04, Python 2.7, Django 1.5, Postgres 9.2, Bootstrap 3.0). As my first effort I got the Polls app going from the Django 1.5 tutorial <https://docs.djangoproject.com/en/1.5/intro/tutorial01/>. I then installed django-registration 1.0<https

Re: django-registration: extending the user model

2013-10-07 Thread N8
If you mean that the User model doesnt have fields you may want, like telephone or address i.e., the best and easiest way is to use add a UserProfile model with a foreignkey to the User model. Django-profiles is one and it's meant for use with django-registration> https://bitbucket.

django-registration: extending the user model

2013-10-06 Thread +Emmanuel
Hi, I am looking for a comprehensive tutorial on how I can extend the default user model using django-registration, specifically for Django 1.5 and django-registration 1.0 Thanks! -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

Re: Two sets of registration with django-registration

2013-10-02 Thread Vibhu Rishi
gt;> >> First of all I would recommend you using of django-allauth. They are >> having great docs and they support custom user model. django-registration >> is little less maintained and maybe less suitable for your needs. >> >> First you define your custom form in

Re: Two sets of registration with django-registration

2013-09-23 Thread Vibhu Rishi
Thanks for the pointer. Will check out all auth. V. On Tue, Sep 24, 2013 at 4:03 AM, Kamil Gałuszka <galusz...@gmail.com> wrote: > > Of course. > > First of all I would recommend you using of django-allauth. They are > having great docs and they support custom user model

Re: Two sets of registration with django-registration

2013-09-23 Thread Kamil Gałuszka
Of course. First of all I would recommend you using of django-allauth. They are having great docs and they support custom user model. django-registration is little less maintained and maybe less suitable for your needs. First you define your custom form in settings.py: SIGNUP_FORM_CLASS

Two sets of registration with django-registration

2013-09-23 Thread Vibhu Rishi
Hi, I have 2 types of users with different views of the same page . Using django-registration, I have been able to setup all the signup/password change etc for one level of users - say students. Now I want to have another set of registrations for Teachers. Is there a way to achieve that ? Vibhu

Re: Django-Registration compatible with 1.5.2?

2013-09-11 Thread René Fleschenberg
Hi, Andre Lopes: > I need to user a registration app for Django 1.5.2. I'm a little bit > confused on what app to use. I use django-registration==1.0 from PyPi with Django 1.5. Works for me. Regards, René -- René Fleschenberg Am Stadtgarten 28, 45276 Essen, Germany Phone: +49 1577 170

Django-Registration compatible with 1.5.2?

2013-09-08 Thread Andre Lopes
Hi, I need to user a registration app for Django 1.5.2. I'm a little bit confused on what app to use. Currently django-registration(https://bitbucket.org/ubernostrum/django-registration) is compatible with Django 1.5.2? If not, what app should I use? Best Regards, -- You received

Customize error messages for django-registration

2013-09-05 Thread Tony Lâmpada
Hi, 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 mu luck here. My application enables login via OpenID and login/password. Some users "forget their password&q

Re: Django-registration reset password templates not getting picked up

2013-09-03 Thread Kelvin Wong
I put the overridden templates (auth, registration, etc) in a project templates folder in the project root. You have to set it up though in your settings.py as I noted earlier. The filesystem loader is still right there above the app_directories loader. To me the overridden templates don't seem

Re: Django-registration reset password templates not getting picked up

2013-09-03 Thread Vibhu Rishi
Hi Kevin, You were absolutely correct. Moving 'homepage' to the top made it work. Thanks! I was doing all my templates within a single directory pre 1.5 . But then in 1.5 they changed it, so I got a bit confused but then started putting the templates within the app. Not sure if this is good or

Re: Django-registration reset password templates not getting picked up

2013-09-02 Thread Kelvin Wong
Check that your 'homepage' app is above the 'registration' app: INSTALLED_APPS = ( 'homepage', # Order matters, this is loaded before others 'registration', 'django.contrib.auth', ... ) Order of the apps is significant. Review

Re: Django-registration reset password templates not getting picked up

2013-09-02 Thread Vibhu Rishi
Essentially the below should work (and is working for all) as I have the following template loader: TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', ) Vibhu On Tue, Sep 3, 2013 at 7:21 AM, Vibhu Rishi

Re: Django-registration reset password templates not getting picked up

2013-09-02 Thread Vibhu Rishi
I have a module called homepage and they reside in that. Path is as follows : $ ls homepage/templates/registration/ *activate.htmlpassword_change_form.html *activation_complete.html password_reset_complete.html *activation_email_subject.txt password_reset_confirm.html

Re: Django-registration reset password templates not getting picked up

2013-09-02 Thread Kelvin Wong
If you are not using a templates folder in your project root, where are your registration templates located? K On Monday, September 2, 2013 9:42:50 AM UTC-7, Vibhu Rishi wrote: > > > So far, all the other template html files get picked up - except the ones > related to the password management

Re: Django-registration reset password templates not getting picked up

2013-09-02 Thread Vibhu Rishi
b.admin.templates.registration > > K > > > On Saturday, August 31, 2013 11:02:14 PM UTC-7, Vibhu Rishi wrote: > >> I am getting a bit of a problem with django-registration >> >> what else do i need to do ? As per the django-registration documentation, >

Re: Django-registration reset password templates not getting picked up

2013-09-01 Thread Kelvin Wong
Rishi wrote: > > I am getting a bit of a problem with django-registration > > what else do i need to do ? As per the django-registration documentation, > the auth_urls.py is supposed to be automatically included with the default > backend. But apparently, there is some disconnect

Django-registration reset password templates not getting picked up

2013-09-01 Thread Vibhu Rishi
I am getting a bit of a problem with django-registration django-registration was installed in a venv using pip. I have version 1.0 of django-registration and 1.5.1 of Django . I have the templates/registration directory with the templates for the pages that are to display the different pages

Re: django-registration ImportError

2013-07-21 Thread Mike
On Sunday, July 21, 2013 5:20:36 PM UTC+2, donarb wrote: > > > > On Saturday, July 20, 2013 9:23:37 PM UTC-7, Mike wrote: >> >> I just updated django-registration to 1.0 (from 0.8) and now I get an >> ImportError: >> >> ImportError: cannot import name

Re: django-registration ImportError

2013-07-21 Thread donarb
On Saturday, July 20, 2013 9:23:37 PM UTC-7, Mike wrote: > > I just updated django-registration to 1.0 (from 0.8) and now I get an > ImportError: > > ImportError: cannot import name activate > > > /Users/mike/sieve-django/SIEVEENV/lib/python2.7/site-packages/registratio

django-registration ImportError

2013-07-20 Thread Mike
I just updated django-registration to 1.0 (from 0.8) and now I get an ImportError: ImportError: cannot import name activate /Users/mike/sieve-django/SIEVEENV/lib/python2.7/site-packages/registration_email/backends/default/urls.py in 1. from registration.views import activate

RE: problem with extending django registration form

2013-05-31 Thread Babatunde Akinyanmi
: problem with extending django registration form On Thursday, May 30, 2013 2:08:46 PM UTC+1, Tundebabzy wrote: > > Hi, > Have you been able to sort out this issue? > Why don't you create your own backend and shoe horn it into > django-registration. You'll need to implement reg

Re: problem with extending django registration form

2013-05-31 Thread Okorie Emmanuel
On Thursday, May 30, 2013 2:08:46 PM UTC+1, Tundebabzy wrote: > > Hi, > Have you been able to sort out this issue? > Why don't you create your own backend and shoe horn it into > django-registration. You'll need to implement register, activate, > registration_allow

RE: problem with extending django registration form

2013-05-30 Thread Babatunde Akinyanmi
Hi, Have you been able to sort out this issue? Why don't you create your own backend and shoe horn it into django-registration. You'll need to implement register, activate, registration_allowed, get_form_class, post_registration_redirect and post_activation_redirect methods (as needed) though

problem with extending django registration form

2013-05-21 Thread Okorie Emmanuel
hi I have tried extending django registration page with little progress. I can now add new user from the admin but cannot do that on the front end. the problem is that the url does not display the from, but raises exception, "the page cannot be found". Do I need to create a view.py

Pinax Django User Accounts vs. Django Registration

2013-05-13 Thread Parin Porecha
Hi, I want to implement 2-step registration in my Django application. I am using Django 1.5 and MySQL. So, I have decided to use either 'django-user-accounts' by Pinax or 'django-registration' by James Reynolds. I am confused which app to use. User Accounts takes care of all the aspects regarding

RE: How can i extend django registration Field

2013-05-08 Thread Babatunde Akinyanmi
registration Field HI, Am new to django, and working on application i intend to extend the registration field using the django registration app by james bennett, it i keep having several error. is there any other way i can achieve these, or how can i effectively interage django registration

How can i extend django registration Field

2013-05-08 Thread Okorie Emmanuel
HI, Am new to django, and working on application i intend to extend the registration field using the django registration app by james bennett, it i keep having several error. is there any other way i can achieve these, or how can i effectively interage django registration -- You received

Re: Django-Registration/Custom Authentication Issue

2013-04-19 Thread Lee Hinde
Thanks. On Fri, Apr 19, 2013 at 4:41 AM, Paul Walsh <paulywa...@gmail.com> wrote: > These are the changes you'll have to make to django-registration, if you > are using AUTH_USER_MODEL in django 1.5 and inheriting from AbstractUser: > > > https://bitbucket.org/prjts/django

Re: Django-Registration/Custom Authentication Issue

2013-04-19 Thread Paul Walsh
These are the changes you'll have to make to django-registration, if you are using AUTH_USER_MODEL in django 1.5 and inheriting from AbstractUser: https://bitbucket.org/prjts/django-registration/commits/ba31fc3053bfca7eb7a19d912882e50e295adc55 On Friday, 19 April 2013 11:52:55 UTC+3, Paul

Re: Django-Registration/Custom Authentication Issue

2013-04-19 Thread Paul Walsh
James Bennet says above that it is compatible, but the latest django-registration code is not compatible with custom user models. RegistrationProfile, for example, still refers directly to User, whereas the new custom user implementation in Django 1.5 require this to be changed in order

Re: Django-Registration/Custom Authentication Issue

2013-04-17 Thread Scott Anderson
n your model, either importing directly or using the helper function in Django 1.5. django-registration does not do this itself because 1. Using Django 1.5's helpers requires either extra complication of the imports, or a break with Django 1.4 compatibility, and 2. If you're using a custom User mode

Re: Django-Registration/Custom Authentication Issue

2013-04-17 Thread James Bennett
Current hg tip is actually 1.5-compatible, in the sense that if you want to use your own User model, you just subclass the provided stuff and plug in your model, either importing directly or using the helper function in Django 1.5. django-registration does not do this itself because 1. Using

Re: Django-Registration/Custom Authentication Issue

2013-04-16 Thread Lee Hinde
Thanks Scott; that turned out to be the issue. I found those references and updated them and all is well. On Apr 16, 2013, at 7:05 PM, Scott Anderson <scottanderso...@gmail.com> wrote: > Django registration is not compatible with custom user models in Django 1.5, > as it directl

Re: Django-Registration/Custom Authentication Issue

2013-04-16 Thread Scott Anderson
Django registration is not compatible with custom user models in Django 1.5, as it directly references django.contrib.auth.models.User in several places. If you want to maintain your own copy you can swap those refs for those of your own User model. -scott Via mobile phone On Apr 16, 2013

Re: Django-Registration/Custom Authentication Issue

2013-04-16 Thread Rainy
On Sunday, April 14, 2013 9:49:32 PM UTC-4, Lee Hinde wrote: > > I'm trying to do a 'simple' registration with just a user email and > password required to create an account. I'm using django-registration with > django 1.5.1 and have created a custom model and the custom m

Django-Registration/Custom Authentication Issue

2013-04-14 Thread Lee Hinde
I'm trying to do a 'simple' registration with just a user email and password required to create an account. I'm using django-registration with django 1.5.1 and have created a custom model and the custom model manager. I can hit all the registration forms just fine and have copied the example from

Re: django-registration vs Django 1.5

2013-03-09 Thread James Bennett
I plan to work on it at the PyCon sprints. Rejected some pull requests lately though due to people abusing various features of bitbucket to spam rather than to help, and my policy is not to reward that kind of behavior. -- You received this message because you are subscribed to the Google Groups

Re: django-registration vs Django 1.5

2013-03-09 Thread Ernest Ezis
I setup a brand new 1.5 project today. I had everything working fine. Was using django's built in admin to test/refine and add data to my models. Then I installed django-registration using the repo below, and grabbed the templates. The good news is that, yes, the registration stuff works

Re: django-registration vs Django 1.5

2013-03-01 Thread william ratcliff
I believe that my patched version should also work: https://github.com/williamratcliff/django-registration Please let me know if there are problems--I should issue a pull request (the patch is minor) On Fri, Mar 1, 2013 at 11:07 AM, Johan Kock <johan.k...@gmail.com> wrote: > Hi Xavi

Re: django-registration vs Django 1.5

2013-03-01 Thread Johan Kock
Hi Xavi, I'm wrestling with the same problem right now. There are a couple of pull request to solve this but until they are accepted I'm using this fork: https://bitbucket.org/eire1130/django-registration pip install https://bitbucket.org/eire1130/django-registration/get/tip.tar.gz /Johan

django-registration vs Django 1.5

2013-03-01 Thread Xavier Pegenaute
Hi, seems django-registration doesn't support properly the new user model from Django 1.5, any one know how to work around it, or at least some other application able to deal with Django 1.5? Thanks, Xavi -- You received this message because you are subscribed to the Google Groups "D

Re: django-registration-template

2013-01-23 Thread Pankaj Singh
provide some more details. > > Regards, > - sameer oak. > > > On Friday, November 4, 2011 9:41:54 AM UTC+5:30, Ezequiel Bertti wrote: >> >> Hi, >> >> I just release a project on github with bootstrap from twitter v1.4 form >> django-registration. >&g

Re: django-registration-template

2013-01-23 Thread SameerOak
Bertti wrote: > > Hi, > > I just release a project on github with bootstrap from twitter v1.4 form > django-registration. > > Is a simple use of bootstrap just using template for render with css. No > python code need. > > Its is perfect sample for designers to kno

Re: django-registration fork for 1.5?

2012-12-16 Thread Detectedstealth
, mikegolf wrote: > > Hi, > is there any django-registration fork that works on Django 1.5? > > thanks, > mg > -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://group

Re: django-registration customization

2012-12-14 Thread sri
Hi Karen, Thanks very much for your help. It's working now after i used the registrationfrom in the template. Thanks On Friday, 14 December 2012 02:34:24 UTC, Karen Tracey wrote: > > On Wed, Dec 12, 2012 at 3:36 PM, sri >wrote: > >> Now, when i click on the register

Re: django-registration customization

2012-12-13 Thread Karen Tracey
On Wed, Dec 12, 2012 at 3:36 PM, sri wrote: > Now, when i click on the register button on the page, the form validation > does not work. > Let's say if i enter the username that already exists on the database, it > is not reporting any errors. It is just displaying the

django-registration fork for 1.5?

2012-12-12 Thread mikegolf
Hi, is there any django-registration fork that works on Django 1.5? thanks, mg -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/kia2ThjwpSw

django-registration customization

2012-12-12 Thread sri
Hi, I am using django-registration (http://pypi.python.org/pypi/django-registration) app for my project and i have added an extra page which shows both login and registration forms together. But on this new page, the validation for registration form does not work. It works if i display

Re: How to make django-registration use Chinese as username?

2012-12-10 Thread Tomas Neme
wrote: > I am a chinese user. I want to use django-registration to make a > user-registration application. > But I find django-registration only support english username. And its > help_text are also english. > I need to use Chinese as username. > What should I do? > >

How to make django-registration use Chinese as username?

2012-12-09 Thread Scarl
I am a chinese user. I want to use django-registration to make a user-registration application. But I find django-registration only support english username. And its help_text are also english. I need to use Chinese as username. What should I do? -- You received this message because you

Re: django registration custom backend

2012-10-27 Thread Bill Freeman
On Sat, Oct 27, 2012 at 9:46 AM, Ian Foote <i...@feete.org> wrote: > Hi, > > I'm trying to write a custom backend for django registration. > (http://docs.b-list.org/django-registration/0.8/backend-api.html) > I'm using python 2.7 and django 1.4. > > What I want is for an

django registration custom backend

2012-10-27 Thread Ian Foote
Hi, I'm trying to write a custom backend for django registration. (http://docs.b-list.org/django-registration/0.8/backend-api.html) I'm using python 2.7 and django 1.4. What I want is for an existing user with suitable permissions to be able to register accounts for new users. The new user

Re: Django-registration tutorial + code

2012-07-09 Thread Jeff Silverman
documentation and there doesn't seem to be anything that I understand to > fix > this. > > -- > View this message in context: > http://python.6.n6.nabble.com/Django-registration-tutorial-code-tp4974793p4981365.html > Sent from the django-users mailing list archive at Nabble.com. &g

Re: Django-registration tutorial + code

2012-07-09 Thread scoop
at the documentation and there doesn't seem to be anything that I understand to fix this. -- View this message in context: http://python.6.n6.nabble.com/Django-registration-tutorial-code-tp4974793p4981365.html Sent from the django-users mailing list archive at Nabble.com. -- You received

Re: UserProfile.user" must be a "User" instance. django-registration

2012-07-04 Thread Melvyn Sopacua
user = request.user,# here i am trying to add user from > request who is coming from RegistrationForm from django -registration ># I am getting the error in this above line If request.user.is_anonymous() is True you have your answer. If not, figure out what kind of s

Re: UserProfile.user" must be a "User" instance. django-registration

2012-07-02 Thread megaBos
it seems fine, don't know why it shouldn't work, a different approach would be to overide the models save method and add the user there. On Monday, July 2, 2012 4:17:03 PM UTC+3, Nikhil Verma wrote: > > HI All > > I am applying an django-registration in my app. So i create a

  1   2   3   4   5   >