Re: Generiview that show mutiple class model

2011-05-04 Thread Pascal Moutia
Ok thank you for your solutions :) Le 4 mai 2011 à 15:09, Xavier Ordoquy a écrit : > > Le 4 mai 2011 à 14:56, Pascal Moutia a écrit : > >> First tank you Xavier for you respond let me get you more precisions: >> this is my app models.py (normaly the models.py have more classes always >> with

Re: Generiview that show mutiple class model

2011-05-04 Thread Xavier Ordoquy
Le 4 mai 2011 à 14:56, Pascal Moutia a écrit : > First tank you Xavier for you respond let me get you more precisions: > this is my app models.py (normaly the models.py have more classes always with > a ForeignKey to Info): > > class Info (models.Model): >nom = models.CharField(max_length=1

Re: Generiview that show mutiple class model

2011-05-04 Thread Pascal Moutia
First tank you Xavier for you respond let me get you more precisions: this is my app models.py (normaly the models.py have more classes always with a ForeignKey to Info): class Info (models.Model): nom = models.CharField(max_length=100) prenom = models.CharField(max_length=100) rue =

Re: Generiview that show mutiple class model

2011-05-04 Thread Xavier Ordoquy
Le 4 mai 2011 à 14:38, Pascal Moutia a écrit : > Hi, > I've been having a problem i'd like to show mutiple class from a model in a > generic view but I can't find a way to it, > Can some one tel me do I have to write my own view or is there any generic > view that can do this ? What do you m