Re: edit fieldset.html template

2009-10-22 Thread onoxo
some hint? On Oct 22, 12:28 pm, onoxo wrote: > is there some kind of manual/procedure to use objects in template > pages? > > On Oct 21, 10:40 pm, onoxo wrote: > > > > > hi! > > i have a model and I'm using it as inline in admin site. here is the

Re: edit fieldset.html template

2009-10-22 Thread onoxo
is there some kind of manual/procedure to use objects in template pages? On Oct 21, 10:40 pm, onoxo wrote: > hi! > i have a model and I'm using it as inline in admin site. here is the > code: > > models.py > > class PhotoItem(models.Model): >     order =

edit fieldset.html template

2009-10-21 Thread onoxo
hi! i have a model and I'm using it as inline in admin site. here is the code: models.py class PhotoItem(models.Model): order = models.IntegerField(blank = True, null = True) itemset = models.ForeignKey('PhotoSet', related_name='photoset') item = models.ForeignKey('Photo',