Changes between Initial Version and Version 1 of Ticket #25552
- Timestamp:
- Oct 13, 2015, 12:16:35 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25552 – Description
initial v1 1 1 The help_text_for_field function in contrib/admin/utils returns 'None' if field.help_text is None. 2 2 Needs to following statements: 3 {{{ 3 4 if hasattr(field, 'help_text'): 4 5 help_text = field.help_text 5 6 }}} 6 7 TO: 8 {{{ 7 9 help_text = getattr(field, 'help_text', '') 10 }}}