Django DateTimeField from form to UTC
问题 I have a small Django app with a form, wich saves some data to the DB. Here's the form: class SomeForm(forms.Form): time = forms.DateTimeField() ... And the view, where I save it: class AccountAddIncome(View): def save(self, form): model = Model( time=form.cleaned_data['time'] ) model.save() def post(self, request, *args, **kwargs): form = SomeForm(request.POST) if form.is_valid(): self.save(form) return redirect(self.success_url) else: ... My problem is, that the Django admin says: "Note: