Re: Categorisation

2008-11-12 Thread bruno desthuilliers
On 11 nov, 21:41, coderb <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm having trouble getting my head around how to set up my data entry > and queries, so that a listing/detail entry is categorised properly. > > firstly, my models look like this: > > class Category(models.Model): > name

Categorisation

2008-11-11 Thread coderb
Hi All, I'm having trouble getting my head around how to set up my data entry and queries, so that a listing/detail entry is categorised properly. firstly, my models look like this: class Category(models.Model): name = models.CharField(max_length=100, unique=True) slug