mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2025-02-23 01:40:32 +03:00
10 lines
229 B
Python
10 lines
229 B
Python
from django import forms
|
|
|
|
|
|
class TracksLoadForm(forms.Form):
|
|
address = forms.CharField(max_length=500)
|
|
|
|
|
|
class FileUploadForm(forms.Form):
|
|
file = forms.FileField(widget=forms.ClearableFileInput(attrs={"multiple": True}))
|