diff options
Diffstat (limited to 'coip/apps/name/forms.py')
-rw-r--r-- | coip/apps/name/forms.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/coip/apps/name/forms.py b/coip/apps/name/forms.py new file mode 100644 index 0000000..0c96480 --- /dev/null +++ b/coip/apps/name/forms.py @@ -0,0 +1,15 @@ +''' +Created on Jun 24, 2010 + +@author: leifj +''' +from django import forms +from coip.apps.name.models import Name, Attribute + +class NameForm(forms.ModelForm): + class Meta: + model = Name + +class AttributeForm(forms.ModelForm): + class Meta: + model = Attribute
\ No newline at end of file |