1 from django import forms
2
3 from upload.model import Participant
4
5 class ParticipantForm(forms.ModelForm):
6 class Meta:
7 model = Participant
8