On Mon, Oct 12, 2009 at 12:15 PM, ruidevie...@googlemail.com <
ruidevie...@googlemail.com> wrote:

>
> Hi everyone,
>
> Is is possible to render unescaped HTML in admin pages?
>
> (say) A model has a field "text" which contains HTML markup. Is this
> something that can be changed on the model (ie __unicode__ method) or
> do I have to change the admin templates?
>
>
I assume you mean when the field is included in list_display?

Define a callable that returns the field value, set allow_tags=True on the
callable, and list the callable instead of the field in list_display.

The doc has examples that might help:
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_display

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