Hi Malcolm,

  Am I right that list_display option affects display on the change
list page (where one can select an object to change from the list)
rather than on an individual object change page where propetries of
the individual object are presented for edit? I need to display
pictures on the latter page. According to documentation one can define
what to display there in the 'fields' attribute inside Admin inner
class. But in this attribute only model fields are allowed to be not
methods. So this is a problem (as I can see it).

Anthony

On Apr 17, 6:08 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Thu, 2008-04-17 at 07:00 -0700, Legioneer wrote:
> > Hi All!
>
> > Trying to get a solution for a problem. I have a model which has one
> > to many relationship with another model which contains an ImageField.
> > E.g:
>
> > class Person(models.Model):
> >     name = models.CharField(max_length=512)
>
> > class Image(models.Model):
> >     image = models.ImageField(upload_to='/images')
> >     active = models.BooleanField(default=True)
> >     person = models.ForeignKey(Person)
>
> > How is it possible to display pictures of a person (with checkbox
> > corresponding to 'active' field) in a person change page instead of
> > filenames when using django admin? Is there some 'render' method in a
> > model or smth like this? Any clue will be appreciated.
>
> Read the documentation for the list_display option in the Admin inner
> class. You can use methods on the model to create output for the change
> list page, so a method on the Person model could return the HTML
> required to display the image (read about the allow_tags attribute on
> methods in the same section of the documentation). Another method could
> return the "active" link.
>
> Regards,
> Malcolm
>
> --
> Plan to be spontaneous - tomorrow.http://www.pointy-stick.com/blog/
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to