diff options
Diffstat (limited to 'coip/apps/consumer/forms.py')
-rw-r--r-- | coip/apps/consumer/forms.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/coip/apps/consumer/forms.py b/coip/apps/consumer/forms.py new file mode 100644 index 0000000..1973f48 --- /dev/null +++ b/coip/apps/consumer/forms.py @@ -0,0 +1,11 @@ +from django.forms import forms +from form_utils.forms import BetterModelForm +from coip.apps.consumer.models import Consumer + +__author__ = 'leifj' + +class ConsumerForm(BetterModelForm): + + class Meta: + model = Consumer + fields = ['name','consumer_name','inherit'] |