From a205fe9378fa0048aa7f24ad921b0c31ca5a1b21 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Thu, 18 Nov 2010 01:29:41 +0000 Subject: [PATCH] Added notes in old generic views howto about the new class based approach. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14610 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/generic-views.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/topics/generic-views.txt b/docs/topics/generic-views.txt index 41e32c87aa..9251b3ad44 100644 --- a/docs/topics/generic-views.txt +++ b/docs/topics/generic-views.txt @@ -2,6 +2,16 @@ Generic views ============= + +.. versionchanged:: 1.3 + +.. note:: + + From Django 1.3, function-based generic views have been deprecated in favor + of a class-based approach, described in the class-based views :doc:`topic + guide ` and :doc:`detailed reference + `. + Writing Web applications can be monotonous, because we repeat certain patterns again and again. Django tries to take away some of that monotony at the model and template layers, but Web developers also experience this boredom at the view