From 315a4ce2c7ede1268caa02b4f54141bd86615e50 Mon Sep 17 00:00:00 2001 From: substantialnoninfringinguser Date: Wed, 13 May 2009 05:22:38 +0100 Subject: [PATCH] [svn] Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8083 by aaron @ 12/8/2008 5:17 AM --- expo/forms.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 expo/forms.py diff --git a/expo/forms.py b/expo/forms.py new file mode 100644 index 0000000..c8e2842 --- /dev/null +++ b/expo/forms.py @@ -0,0 +1,6 @@ +from django.forms import ModelForm +from models import Cave + +class CaveForm(ModelForm): + class Meta: + model = Cave \ No newline at end of file