On Wed, Jan 7, 2009 at 11:45 AM, EagerToUnderstand <truh...@gmail.com>wrote:

>
> What I try to achieve:
> I have a couple of model methods that exposes real time information.
> (Retrieved when method is called.)  This is information I want to
> display not only in the list_display, but also within the change view.
> (Where the fieldsets come into play).
>
> Since the list_display option support methods call I was wondering how
> I can expose this information within the change view without too much
> changing the default code.  I think the problem is that the change
> view builds up a form from the model and method calls can not be
> updated.  The reason why not included in the form object ..and
> therefor not visible to the fieldsets field?
>
> Still clear as mud?
>

The change view pretty much focuses on displaying in a form only what you
can change in a model (non-editable fields are not displayed at all, for
example).  Since you can't edit/change something that is the result of a
model method, I don't believe there are any hooks for showing these thing on
the change page.  If I were to try to do this (which I haven't, so no
guarantees that this is even the right approach) I'd probably start by
looking at overriding/extending the template used for the change view for
that model:

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to