From 08f3969d5eb0e87094fe44a877634251285fed59 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 30 Dec 2006 00:39:41 +0000 Subject: [PATCH] Added a small note about decoupling to docs/newforms.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@4262 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/newforms.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/newforms.txt b/docs/newforms.txt index 9e8454cd9b3..7744d83e5e8 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -72,6 +72,10 @@ The library deals with these concepts: * **Form** -- A collection of fields that knows how to validate itself and display itself as HTML. +The library is decoupled from the other Django components, such as the database +layer, views and templates. It relies only on Django settings, a couple of +``django.utils`` helper functions and Django's internationalization system. + Form objects ============