From 2a965bf753d088e2f5bbc6cfd774e5d2f4691739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=90ry=20M=C3=A1t=C3=A9?= Date: Fri, 27 Dec 2013 11:29:42 +0100 Subject: [PATCH] move TimeStampedModel docs to models.rst --- docs/managers.rst | 7 ------- docs/models.rst | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/managers.rst b/docs/managers.rst index 55d8bd4..e5095a0 100644 --- a/docs/managers.rst +++ b/docs/managers.rst @@ -94,13 +94,6 @@ it's safe to use as your default manager for the model. .. _Django bug #16572: https://code.djangoproject.com/ticket/16572 -TimeStampedModel ----------------- - -This abstract base class just provides self-updating ``created`` and -``modified`` fields on any model that inherits from it. - - .. _QueryManager: QueryManager diff --git a/docs/models.rst b/docs/models.rst index b087ee0..7a05c79 100644 --- a/docs/models.rst +++ b/docs/models.rst @@ -10,6 +10,13 @@ manager that returns only objects for whom the current date-time lies within their time range. +TimeStampedModel +---------------- + +This abstract base class just provides self-updating ``created`` and +``modified`` fields on any model that inherits from it. + + StatusModel -----------