summaryrefslogtreecommitdiffstats
path: root/expo/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'expo/forms.py')
-rw-r--r--expo/forms.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/expo/forms.py b/expo/forms.py
index c8e2842..91f39f0 100644
--- a/expo/forms.py
+++ b/expo/forms.py
@@ -1,6 +1,10 @@
from django.forms import ModelForm
-from models import Cave
+from models import Cave, Person
class CaveForm(ModelForm):
class Meta:
- model = Cave \ No newline at end of file
+ model = Cave
+
+class PersonForm(ModelForm):
+ class Meta:
+ model = Person \ No newline at end of file