So, I have a DateField in my model and have also set I18N & L10N to `True` in settings. When a browser running `en-AU` locale visits the website, Django tries to parse the value read from model, using the first value in `DATE_INPUT_FORMATS` from /conf.
This causes an error in chrome dev console and the HTML date field rendered without the date read from the model.
**This bug goes away when I disable L10N in settings. I am able to reproduce this bug in `en-AU` and `en-GB`**
Do you guys think this is a bug, or me doing something wrong?