summaryrefslogtreecommitdiffstats
path: root/core/forms.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-04-13 01:37:42 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-04-13 01:37:42 +0100
commit0820d7c0dce82553348fbbd3bb34b288daae5480 (patch)
tree31ef9c25bfe4fac8dc799cd64d4491697c687a28 /core/forms.py
parent267741fa8b304112d96842118bc6c3ae335500f7 (diff)
downloadtroggle-0820d7c0dce82553348fbbd3bb34b288daae5480.tar.gz
troggle-0820d7c0dce82553348fbbd3bb34b288daae5480.tar.bz2
troggle-0820d7c0dce82553348fbbd3bb34b288daae5480.zip
Docstrings for all modules
Diffstat (limited to 'core/forms.py')
-rw-r--r--core/forms.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/forms.py b/core/forms.py
index 73d541a..f435e4c 100644
--- a/core/forms.py
+++ b/core/forms.py
@@ -11,6 +11,10 @@ from django.contrib.admin.widgets import AdminDateWidget
from troggle.core.models.troggle import Person, PersonExpedition, Expedition
from troggle.core.models.caves import Cave, LogbookEntry, QM, Entrance, CaveAndEntrance
+'''These are all the Forms used by troggle
+Some are not used and need renovating or destroying.
+'''
+
class CaveForm(ModelForm):
underground_description = forms.CharField(required = False, widget=forms.Textarea())
explorers = forms.CharField(required = False, widget=forms.Textarea())