remove unused templatetags load

This commit is contained in:
Philip Sargent
2021-05-01 00:18:13 +01:00
parent 03160f3863
commit 63640db81f
4 changed files with 3 additions and 12 deletions

View File

@@ -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 = []