summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/fields.txt9
-rw-r--r--docs/topics/i18n/timezones.txt4
2 files changed, 11 insertions, 2 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 9510025e5c..4b33c9cdb0 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -501,6 +501,15 @@ message key.
``True`` will cause the field to have ``editable=False`` and ``blank=True``
set.
+.. note::
+ The ``auto_now`` and ``auto_now_add`` options will always use the date in
+ the :ref:`default timezone <default-current-time-zone>` at the moment of
+ creation or update. If you need something different, you may want to
+ consider simply using your own callable default or overriding ``save()``
+ instead of using ``auto_now`` or ``auto_now_add``; or using a
+ ``DateTimeField`` instead of a ``DateField`` and deciding how to handle the
+ conversion from datetime to date at display time.
+
``DateTimeField``
-----------------
diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt
index f2b7c30a74..b7eeb3afb2 100644
--- a/docs/topics/i18n/timezones.txt
+++ b/docs/topics/i18n/timezones.txt
@@ -9,13 +9,13 @@ Time zones
Overview
========
-When support for time zones is enabled, Django stores date and time
+When support for time zones is enabled, Django stores datetime
information in UTC in the database, uses time-zone-aware datetime objects
internally, and translates them to the end user's time zone in templates and
forms.
This is handy if your users live in more than one time zone and you want to
-display date and time information according to each user's wall clock.
+display datetime information according to each user's wall clock.
Even if your Web site is available in only one time zone, it's still good
practice to store data in UTC in your database. One main reason is Daylight