summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2021-05-01 00:18:13 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2021-05-01 00:18:13 +0100
commit63640db81ff16d75137e1ab7d317c90ef4bf91b0 (patch)
treeb4c2a91aa8a290dafd6c898e8869f73d258da403 /core/views/other.py
parent03160f3863a5ca16f07d82b7b11d6b1b83f50f8f (diff)
downloadtroggle-63640db81ff16d75137e1ab7d317c90ef4bf91b0.tar.gz
troggle-63640db81ff16d75137e1ab7d317c90ef4bf91b0.tar.bz2
troggle-63640db81ff16d75137e1ab7d317c90ef4bf91b0.zip
remove unused templatetags load
Diffstat (limited to 'core/views/other.py')
-rw-r--r--core/views/other.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/views/other.py b/core/views/other.py
index 0923e33..0d096f2 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -202,11 +202,12 @@ def ajax_test(request):
class MyForm(forms.Form): # not a model-form
title = forms.CharField(max_length=20)
- scanfiles = forms.FileField() # in MEDIA_FILES
+ scanfiles = forms.FileField()
@login_required_if_public
def scanupload(request, wallet=None):
'''Upload one scanned image file into a wallet on /expofiles
+ This does NOT use a Django model linked to a Django form. Just a simple Django form.
'''
filesaved = False
actual_saved = []