From 6785fc8ab29495d12cfde8caa3d07375aa2e6246 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Wed, 4 Aug 2010 14:13:48 +0200 Subject: separated-out the invitation model again --- coip/apps/invitation/forms.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 coip/apps/invitation/forms.py (limited to 'coip/apps/invitation/forms.py') diff --git a/coip/apps/invitation/forms.py b/coip/apps/invitation/forms.py new file mode 100644 index 0000000..28add9b --- /dev/null +++ b/coip/apps/invitation/forms.py @@ -0,0 +1,12 @@ +''' +Created on Jun 23, 2010 + +@author: leifj +''' +from django import forms +from coip.apps.invitation.models import Invitation + +class InvitationForm(forms.ModelForm): + class Meta: + model = Invitation + fields = ['email','message','expires'] \ No newline at end of file -- cgit v1.1