from django import forms from spoken_tut.upload.models import Participant class ParticipantForm(forms.ModelForm): class Meta: model = Participant