mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
5 lines
114 B
Python
5 lines
114 B
Python
from django import forms
|
|
|
|
|
|
class JSONUploadForm(forms.Form):
|
|
json_file = forms.FileField() # in memory upload
|