from django import forms class UploadForm(forms.Form): artist = forms.CharField() title = forms.CharField() file = forms.FileField()