Opened 17 years ago

Last modified 17 years ago

#5794 closed

[patch] newforms DateTimeInput breaks form_for_model rendering — at Initial Version

Reported by: MikeH <mike@…> Owned by: nobody
Component: Forms Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Using revision 6593, I have the following problem when rendering forms for models that have DateTimeFields

mikeh@tk421:~/tthome$ ./manage.py shell
Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32)
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)

from tthome.events.models import Event

import django.newforms as forms

f = forms.form_for_model(Event)

form = f()

print form

Traceback (most recent call last):

File "<console>", line 1, in <module>
File "/usr/lib/python2.5/site-packages/django/utils/encoding.py", line 13, in str

return self.unicode().encode('utf-8')

File "/usr/lib/python2.5/site-packages/django/newforms/forms.py", line 80, in unicode

return self.as_table()

File "/usr/lib/python2.5/site-packages/django/newforms/forms.py", line 159, in as_table

return self._html_output(u'<tr><th>%(label)s</th><td>%(errors)s%(field)s%(help_text)s</td></tr>', u'<tr><td colspan="2">%s</td></tr>', '</td></tr>', u'<br />%s', False)

File "/usr/lib/python2.5/site-packages/django/newforms/forms.py", line 144, in _html_output

output.append(normal_row % {'errors': force_unicode(bf_errors), 'label': force_unicode(label), 'field': unicode(bf), 'help_text': help_text})

File "/usr/lib/python2.5/site-packages/django/newforms/forms.py", line 251, in unicode

return self.as_widget()

File "/usr/lib/python2.5/site-packages/django/newforms/forms.py", line 279, in as_widget

return widget.render(self.html_name, data, attrs=attrs)

File "/usr/lib/python2.5/site-packages/django/newforms/widgets.py", line 165, in render

value.strftime(self.format), attrs)

AttributeError: 'NoneType' object has no attribute 'strftime'

The attached patch fixes this behavior, but it might not be the best solution...

Change History (1)

by MikeH <mike@…>, 17 years ago

Attachment: widgetpatch.diff added

Detects for None when rendering

Note: See TracTickets for help on using tickets.
Back to Top