diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 19:08:42 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 19:08:42 +0100 |
commit | bcdb3572fa260052d76b54961dea9a9381381311 (patch) | |
tree | bc4c8b84354fb881d1bd25c1fe797e6c2345fd5f /core/forms.py | |
parent | 18938c9fca5af4ed8e8fe97f101bd5a9870f2b5a (diff) | |
download | troggle-bcdb3572fa260052d76b54961dea9a9381381311.tar.gz troggle-bcdb3572fa260052d76b54961dea9a9381381311.tar.bz2 troggle-bcdb3572fa260052d76b54961dea9a9381381311.zip |
Add new per-module ToDo texts
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/forms.py b/core/forms.py index d2eddd3..0ecca73 100644 --- a/core/forms.py +++ b/core/forms.py @@ -15,9 +15,13 @@ from troggle.core.models.caves import Cave, LogbookEntry, QM, Entrance, CaveAndE Some are not used and need renovating or destroying. ''' +todo = '''Fix UploadFileForm +delete TripForm once working +''' + class CaveForm(ModelForm): '''Only those fields for which we want to override defaults are listed here - the other fields are present on the form, but use the default presentaiton style + the other fields are present on the form, but use the default presentation style ''' official_name = forms.CharField(required = False, widget=forms.TextInput(attrs={'size': '45'})) underground_description = forms.CharField(required = False, widget=forms.Textarea(attrs={'rows':9})) |