European date input in Django Admin

前端 未结 6 1281
-上瘾入骨i
-上瘾入骨i 2021-01-02 13:30

Django has a DATE_FORMAT and a DATE_TIME_FORMAT options that allow us to choose which format to use when viewing dates, but doesn\'t apparently let me change the input forma

6条回答
  •  感动是毒
    2021-01-02 13:37

    just beware not to write it as a string but as a tuple. eg:

    DATE_INPUT_FORMATS = ('%d.%m.%Y',) 
    

    if you want to have only one valid way of writing date in a form.

提交回复
热议问题