Re: django admin not showing the models related data

2009-02-09 Thread Atishay
On Feb 9, 11:40 pm, Alex Gaynor wrote: > On Mon, Feb 9, 2009 at 11:36 PM, Atishay wrote: > > > I just added admin related info in models.py > > The models however do not show up in django admin. I am using 1.0.2 > > version currently. they were displaying properly in .97 version > > >  31 > >

Re: django admin not showing the models related data

2009-02-09 Thread Alex Gaynor
On Mon, Feb 9, 2009 at 11:36 PM, Atishay wrote: > > I just added admin related info in models.py > The models however do not show up in django admin. I am using 1.0.2 > version currently. they were displaying properly in .97 version > > 31 > 32 def __str__(self): > 33 return "name:

django admin not showing the models related data

2009-02-09 Thread Atishay
I just added admin related info in models.py The models however do not show up in django admin. I am using 1.0.2 version currently. they were displaying properly in .97 version 31 32 def __str__(self): 33 return "name: " +self.first_name + " " + self.mi + " " + \ 34 se