diff options
-rw-r--r-- | expo/forms.py | 6 |
1 files changed, 6 insertions, 0 deletions
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 |