Re: Manage Multiple floatfields in admin

2009-07-16 Thread hcsturix74
Great ringemup, I'll try I use stackedinline for other apps, forgot tabular in the meanwhile ;) thanks. On 16 Lug, 21:45, ringemup wrote: > Have you considered using a related model to store all your floats? > Then you could use a tabular inline in teh admin. > > On Jul 16, 2:28 pm, hcsturix

Re: Manage Multiple floatfields in admin

2009-07-16 Thread ringemup
Have you considered using a related model to store all your floats? Then you could use a tabular inline in teh admin. On Jul 16, 2:28 pm, hcsturix74 wrote: > Hi all, > I am creating a model in django containing some (i.e. 100 ) float > values such as: > > class DataMeasure(models.Model): >

Manage Multiple floatfields in admin

2009-07-16 Thread hcsturix74
Hi all, I am creating a model in django containing some (i.e. 100 ) float values such as: class DataMeasure(models.Model): measure_name = models.CharField(max_length=50, verbose_name= (u'name')) measure_type = models.CharField(max_length=50, verbose_name= (u'type'))