I want to allow the entry of a date without a year into a DateField
to mean the actual year. Like "10.6."
should mean 10 June 2021, since it's 2021 at the time of writing. The following DATE_INPUT_FORMATS
didn't cut it:
DATE_INPUT_FORMATS = ('%d.%m.%y', '%d.%m.%Y', '%Y-%m-%d', '%d.%m.')
This does allow such input, but the year will be 10 June 0000; not what I aimed for.
Any advice?