Fixed #5976 -- Handle auto-escaping correctly for empty columns in admin change
view. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6705 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
116b9d06cc
commit
ab69710de4
|
@ -187,7 +187,7 @@ def items_for_result(cl, result):
|
|||
else:
|
||||
result_repr = escape(field_val)
|
||||
if force_unicode(result_repr) == '':
|
||||
result_repr = ' '
|
||||
result_repr = mark_safe(' ')
|
||||
# If list_display_links not defined, add the link tag to the first field
|
||||
if (first and not cl.lookup_opts.admin.list_display_links) or field_name in cl.lookup_opts.admin.list_display_links:
|
||||
table_tag = {True:'th', False:'td'}[first]
|
||||
|
|
Loading…
Reference in New Issue