summaryrefslogtreecommitdiffstats
path: root/webapp/django/forms/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/forms/__init__.py')
-rw-r--r--webapp/django/forms/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/webapp/django/forms/__init__.py b/webapp/django/forms/__init__.py
new file mode 100644
index 0000000000..0d9c68f9e0
--- /dev/null
+++ b/webapp/django/forms/__init__.py
@@ -0,0 +1,17 @@
+"""
+Django validation and HTML form handling.
+
+TODO:
+ Default value for field
+ Field labels
+ Nestable Forms
+ FatalValidationError -- short-circuits all other validators on a form
+ ValidationWarning
+ "This form field requires foo.js" and form.js_includes()
+"""
+
+from util import ValidationError
+from widgets import *
+from fields import *
+from forms import *
+from models import *