| 1055 | Note that ``initial`` values are *not* cleaned. It is supposed that values are right, unlike ``data`` values:: |
| 1056 | |
| 1057 | >>> class NewsForm(forms.Form): |
| 1058 | ... date = forms.DateField() |
| 1059 | ... title = forms.CharField() |
| 1060 | >>> f = NewsForm(initial={'date': 'not_a_date'}) |
| 1061 | >>> f.as_table() |
| 1062 | <tr><th><label for="id_date">Date:</label></th><td><input type="text" name="date" value="not_a_date" id="id_date" /></td></tr> |
| 1063 | <tr><th><label for="id_title">Title:</label></th><td><input type="text" name="title" id="id_title" /></td></tr> |
| 1064 | |