summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-12-30 00:39:41 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-12-30 00:39:41 +0000
commit08f3969d5eb0e87094fe44a877634251285fed59 (patch)
treefe0290171c01e328b0a282533acf6abcbddabe3a /docs
parentb9fdf9abb841f1eda11fb4d8094372dbbbeb58cb (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt
index 9e8454cd9b..7744d83e5e 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
============