Re: [ver 1.5] AbstractBaseUser not found?

2013-01-25 Thread scott212
statements: > > from django.contrib.auth.models import AbstractBaseUser > > Hope that helps. > > -- > Joey "JoeLinux" Espinosa* > * > <http://joelinux117.blogspot.com> > <http://twitter.com/therealjoelinux><http://about.me/joelinux> > > > On F

Re: [ver 1.5] AbstractBaseUser not found?

2013-01-25 Thread scott212
Here's the docs I'm using: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#specifying-a-custom-user-model On Friday, January 25, 2013 7:00:47 AM UTC-8, scott212 wrote: > > I'm trying to take Django 1.5 for a spin (used older versions for a while) > to

[ver 1.5] AbstractBaseUser not found?

2013-01-25 Thread scott212
I'm trying to take Django 1.5 for a spin (used older versions for a while) to create a basic user that authenticates by email. I'm using the docs for 1.5 and it says to inherit AbstractBaseUser but oddly, it doesn't seem to be available to use. Here's my code: from django.db import models clas

Re: How to handle view/url situation (Newbie)

2009-05-04 Thread scott212
I'm not saying that the original OP code didn't work, just that it felt sloppy to have this lists/delete/item1 url lingering out there. Just looking for a better way. :) John Crawford-14 wrote: > > > Okay, I'm not sure why the OP code didn't work - it seems like going > to the URL 'lists/show

Re: How to handle view/url situation (Newbie)

2009-05-04 Thread scott212
You guys are awesome, it's always great to find a great new framework and then find out it has a great community as well. I can't wait to try this tonight. Thanks again! Masklinn wrote: > > > On 4 May 2009, at 14:55 , pbzRPA wrote: >> On May 4, 1:24 pm, Masklinn wrote: >>> On 4 May 2009, at

How to handle view/url situation (Newbie)

2009-05-03 Thread scott212
I'm reading through the djangobook and trying to build a small app as I go. The app is just a list that I can add to and delete entries from. Deleting is easy, but I'm not sure how the url/view portion should be handled. http://127.0.0.1:8080/lists/show/ list item 1 - [delete] list item 2 - [del