File tree 1 file changed +12
-0
lines changed
tests/regressiontests/forms
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 522
522
<input type="hidden" name="composers" value="P" />
523
523
<input type="hidden" name="composers" value="J" />
524
524
525
+ DateTimeField rendered as_hidden() is special too
526
+
527
+ >>> class MessageForm(Form):
528
+ ... when = SplitDateTimeField()
529
+ >>> f = MessageForm({'when_0': '1992-01-01', 'when_1': '01:01'})
530
+ >>> print f.is_valid()
531
+ True
532
+ >>> print f['when']
533
+ <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" />
534
+ >>> print f['when'].as_hidden()
535
+ <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" />
536
+
525
537
MultipleChoiceField can also be used with the CheckboxSelectMultiple widget.
526
538
>>> class SongForm(Form):
527
539
... name = CharField()
You can’t perform that action at this time.
0 commit comments