Duplicate phrase in documentation of MultiWidget
The documentation in https://docs.djangoproject.com/en/1.5/ref/forms/widgets/#django.forms.MultiWidget.render repeats a couple of phrases:
If value is a list, output of render() will be a concatenation of rendered child widgets. If value is not a list, it will be first processed by the method decompress() to create the list and then processed as above.
In the second case – i.e., if the value is not a list – render() will first decompress the value into a list before rendering it. It does so by calling the decompress() method, which MultiWidget‘s subclasses must implement (see above).
Change History
(11)
Triage Stage: |
Unreviewed → Accepted
|
Owner: |
changed from nobody to itsallvoodoo
|
Status: |
new → assigned
|
Triage Stage: |
Accepted → Ready for checkin
|
Triage Stage: |
Ready for checkin → Accepted
|
Resolution: |
→ fixed
|
Status: |
assigned → closed
|
Alos happens in documentation of django 1.4