diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-08-30 21:17:25 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-08-30 21:17:25 +0300 |
commit | d48163f167fffa6a1652f39195e141757a62d7c1 (patch) | |
tree | a768fc496e7005b77d1af185a0b5b1adb1980add /core/views/uploads.py | |
parent | f23ea0ce4ba0a99dc0483ba3bce31fae665eae4a (diff) | |
download | troggle-d48163f167fffa6a1652f39195e141757a62d7c1.tar.gz troggle-d48163f167fffa6a1652f39195e141757a62d7c1.tar.bz2 troggle-d48163f167fffa6a1652f39195e141757a62d7c1.zip |
update comment
Diffstat (limited to 'core/views/uploads.py')
-rw-r--r-- | core/views/uploads.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/uploads.py b/core/views/uploads.py index a4f5d9c..72b2643 100644 --- a/core/views/uploads.py +++ b/core/views/uploads.py @@ -113,7 +113,7 @@ def logbookedit(request, year=None, slug=None): return render(request, "errors/generic.html", {"message": message}) else: # validation all to be done yet.. - date = request.POST["date"].strip() # TODO check valid and this year + date = request.POST["date"].strip() author = request.POST["author"].strip() # TODO check against personexpedition others = request.POST["others"].strip() # TODO check each against personexpedition place = request.POST["place"].strip().replace('-','=') # no hyphens ! |