mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 21:12:23 +01:00
8 lines
147 B
Python
8 lines
147 B
Python
from django import forms
|
|
|
|
|
|
class UploadForm(forms.Form):
|
|
artist = forms.CharField()
|
|
title = forms.CharField()
|
|
file = forms.FileField()
|