manytomany relation to child classes

2009-03-31 Thread dunia
hi list! i have a model: class A(models.Model): class Meta: abstract = True ... class B(A): ... class C(A): ... class D(models.Model): ... instances of class D have a many to many relationship with A, and I want to be able to select if the above will be set

Re: CSS problem

2007-11-01 Thread dunia
Goutham DL wrote: > Can some one please help me out here? > > On Nov 1, 7:03 pm, Goutham DL <[EMAIL PROTECTED]> wrote: > >> hi, >> Its still not working. Iam actually using django 0.96.The code that >> antoni gave is giving errors. >> Can someone please explain why i need to configure media_url

Re: Search MySQL Full-Text

2007-10-31 Thread dunia
jacoberg2 wrote: > Hey I was just reading the tutorial about expanding the > search capability of django by using the full text search > of MySQL. At the end of the articale the author informs > us that there is a boolean search operator in the data > base api, this is the link he gave: > > http:/

Re: newbie: user proile in models

2007-10-26 Thread dunia
Gigs_ wrote: > how do you people create user profile in models? > i want to created user profile for users to register > i have don it like this, but i have feeling that it could be better > > class PlayersProfile(models.Model): > user = models.ForeignKey(User) > first_name = models.CharFi