Changes between Initial Version and Version 1 of Ticket #32215
- Timestamp:
- Nov 20, 2020, 1:18:07 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32215
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #32215 – Description
initial v1 2 2 Move comma in widget descriptor? 3 3 it says: 4 {{{ 4 5 class AuthorForm(forms.Form): 5 6 name = forms.CharField(max_length=100) … … 9 10 ) 10 11 birth_date = forms.DateField(required=False) 12 }}} 11 13 and I THINK should be: 14 {{{ 12 15 class AuthorForm(forms.Form): 13 16 name = forms.CharField(max_length=100) … … 17 20 ), 18 21 birth_date = forms.DateField(required=False) 22 }}}