mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
5 lines
154 B
Python
5 lines
154 B
Python
from django import forms
|
|
|
|
|
|
class JSONUploadForm(forms.Form):
|
|
json_file = forms.FileField(label="Knowledge Base, JSON file format") # in memory upload
|