django-rest-framework/rest_framework/utils/dates.py
Stephan Groß bfff356dd3 Add better date / datetime validation (pull 2)
addition to #631 with update to master + timefield support
2013-02-26 11:09:54 +01:00

14 lines
473 B
Python

def get_readable_date_format(date_format):
mapping = [("%Y", "YYYY"),
("%y", "YY"),
("%m", "MM"),
("%b", "[Jan through Dec]"),
("%B", "[January through December]"),
("%d", "DD"),
("%H", "HH"),
("%M", "MM"),
("%S", "SS"),
("%f", "uuuuuu")]
for k, v in mapping:
date_format = date_format.replace(k, v)
return date_format