Kaydet (Commit) 631bb7d0 authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

Added a test for hidden SplitDateTime fields. Thanks, seveas.

Fixed #11213

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13816 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 1e7b2f5a
......@@ -522,6 +522,18 @@ tags.
<input type="hidden" name="composers" value="P" />
<input type="hidden" name="composers" value="J" />
DateTimeField rendered as_hidden() is special too
>>> class MessageForm(Form):
... when = SplitDateTimeField()
>>> f = MessageForm({'when_0': '1992-01-01', 'when_1': '01:01'})
>>> print f.is_valid()
True
>>> print f['when']
<input type="text" name="when_0" value="1992-01-01" id="id_when_0" /><input type="text" name="when_1" value="01:01" id="id_when_1" />
>>> print f['when'].as_hidden()
<input type="hidden" name="when_0" value="1992-01-01" id="id_when_0" /><input type="hidden" name="when_1" value="01:01" id="id_when_1" />
MultipleChoiceField can also be used with the CheckboxSelectMultiple widget.
>>> class SongForm(Form):
... name = CharField()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment