On 12/15/06, Milan Andric <[EMAIL PROTECTED]> wrote:
> I would like to loop through the fields in my model and print the names
> (verbose_name) and value of the fields.  I've been hacking at it for
> sometime but can't figure it out.  I had some help from Magus on IRC
> but still can't find solution.
> See: http://simon.bofh.ms/logger/django/2006/12/13/19/57/
[...]
>     app_fields = []
>     for f in app._meta.fields:
>         app_fields.append(
>             {
>              'label':f.verbose_name,
>              'value':f.__getattribute__(f._meta.fields[0].attname)
>             }
>         )


Try:

app_fields = []
for f in app._meta.fields:
   app_fields.append(
     {
        'label' : f.verbose_name,
       'value': getattr(app, f.name),
    }

Works for me on Boolean fields.

-- 
Phil Davis

--~--~---------~--~----~------------~-------~--~----~
 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