Changes between Initial Version and Version 1 of Ticket #32215


Ignore:
Timestamp:
Nov 20, 2020, 1:18:07 PM (4 years ago)
Author:
Mariusz Felisiak
Comment:

No, it's not a typo. title is a form field, with your patch it will be a tuple.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32215

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #32215 – Description

    initial v1  
    22Move comma in widget descriptor?
    33it says:
     4{{{
    45class AuthorForm(forms.Form):
    56    name = forms.CharField(max_length=100)
     
    910    )
    1011    birth_date = forms.DateField(required=False)
     12}}}
    1113and I THINK should be:
     14{{{
    1215class AuthorForm(forms.Form):
    1316    name = forms.CharField(max_length=100)
     
    1720    ),
    1821    birth_date = forms.DateField(required=False)
     22}}}
Back to Top