Change DateTime input format in django form
问题 I am trying to change the DateTime format in one of my django forms. The format I would like it to accept is: day month year hour_minute_seconds timezone 11 Aug 2015 12:00:00 GMT -> %d %b %Y %H:%M:%S %Z I have been doing some tests but I have not been able to get the right way. I have disabled the L10N in the settings.py file so I can use the %b month format. This is my forms.py file content from django import forms from django.forms import DateTimeField from web.apps.customer.models import