﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
19734	missing values in DATETIME_INPUT_FORMATS docs	Stephan Groß	Simon Charette	"here [https://docs.djangoproject.com/en/dev/ref/settings/#datetime-input-formats 1] are some values missing.

current code:

{{{#!python
DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d %H:%M:%S',     # '2006-10-25 14:30:59'
    '%Y-%m-%d %H:%M:%S.%f',  # '2006-10-25 14:30:59.000200'
    '%Y-%m-%d %H:%M',        # '2006-10-25 14:30'
    '%Y-%m-%d',              # '2006-10-25'
    '%m/%d/%Y %H:%M:%S',     # '10/25/2006 14:30:59'
    '%m/%d/%Y %H:%M:%S.%f',  # '10/25/2006 14:30:59.000200'
    '%m/%d/%Y %H:%M',        # '10/25/2006 14:30'
    '%m/%d/%Y',              # '10/25/2006'
    '%m/%d/%y %H:%M:%S',     # '10/25/06 14:30:59'
    '%m/%d/%y %H:%M:%S.%f',  # '10/25/06 14:30:59.000200'
    '%m/%d/%y %H:%M',        # '10/25/06 14:30'
    '%m/%d/%y',              # '10/25/06'
)
}}}

current doc:

{{{#!python
DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d %H:%M:%S', 
    '%Y-%m-%d %H:%M', 
    '%Y-%m-%d',
    '%m/%d/%Y %H:%M:%S', 
    '%m/%d/%Y %H:%M', 
    '%m/%d/%Y',
    '%m/%d/%y %H:%M:%S', 
    '%m/%d/%y %H:%M', 
    '%m/%d/%y'
)
}}}

1: [https://docs.djangoproject.com/en/dev/ref/settings/#datetime-input-formats]"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed			Accepted	0	0	0	0	1	0
