# Date_formats ## **DATE_FORMATS** Object with the date formats ```shell DATE_FORMATS = { "DD-MM-YYYY": "DD-MM-YYYY --- (24-12-2021)", "MM/DD/YYYY": "MM/DD/YYYY --- (12/24/2021)", "MM-DD-YYYY": "MM-DD-YYYY --- (12-24-2021)", "MM/DD/YYYY": "MM/DD/YYYY --- (12/24/2021)", "DD-MM-YY": "DD-MM-YY --- (24-12-21)", "MM/DD/YY": "MM/DD/YY --- (12/24/21)", "MM-DD-YY": "MM-DD-YY --- (12-24-21)", "MM/DD/YY": "MM/DD/YY --- (12/24/21)", } ``` ## **TIMEZONE_FORMAT** Object with timezone formats. ```shell TIMEZONE_FORMAT = { "DD-MM-YYYY": "%d-%m-%Y", "DD/MM/YYYY": "%d/%m/%Y", "MM-DD-YYYY": "%m-%d-%Y", "MM/DD/YYYY": "%m/%d/%Y", "DD-MM-YY": "%d-%m-%y", "DD/MM/YY": "%d/%m/%y", "MM-DD-YY": "%m-%d-%y", "MM/DD/YY": "%m/%d/%y", } ``` ## **change_utc_date** Function that modifies the date to the timezone set in the system indicated in the settings variable **TIME_ZONE**. ```shell date_utc = date.astimezone(timezone(settings.TIME_ZONE)) return date_utc ```