Changeset 6723
- Timestamp:
- 11/28/07 14:19:58 (1 year ago)
- Files:
-
- django/trunk/django/newforms/extras/widgets.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/newforms/extras/widgets.py
r5859 r6723 7 7 from django.newforms.widgets import Widget, Select 8 8 from django.utils.dates import MONTHS 9 from django.utils.safestring import mark_safe 9 10 10 11 __all__ = ('SelectDateWidget',) … … 52 53 output.append(select_html) 53 54 54 return u'\n'.join(output)55 return mark_safe(u'\n'.join(output)) 55 56 56 57 def value_from_datadict(self, data, files, name):
