﻿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
32320	DateField uses unlocalized function when auto_now is True	M1ha Shvn	nobody	"Hi.

`django.db.models.fields.DateField(auto_now=True)` sets date as `datetime.date.today()` (see [here](https://github.com/django/django/blob/master/django/db/models/fields/__init__.py#L1246)). This date is not localized with django and can be different from `django.utils.timezone.now()` used in `DateTimeField`, if django and local timzeones differ.

Suggestion:
Change `datetime.date.today()` to `django.utils.timezone.now().date()`"	Bug	new	Database layer (models, ORM)	dev	Normal		auto_now DateField USE_TZ		Unreviewed	0	0	0	0	0	0
