mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 22:12:22 +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()
|