parts/django/tests/regressiontests/localflavor/us/forms.py
changeset 69 c6bca38c1cbf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/parts/django/tests/regressiontests/localflavor/us/forms.py	Sat Jan 08 11:20:57 2011 +0530
@@ -0,0 +1,7 @@
+from django.forms import ModelForm
+from models import USPlace
+
+class USPlaceForm(ModelForm):
+    """docstring for PlaceForm"""
+    class Meta:
+        model = USPlace