first commit
This commit is contained in:
10
core/apps/accounts/forms/participant.py
Normal file
10
core/apps/accounts/forms/participant.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django import forms
|
||||
|
||||
from core.apps.accounts.models import ParticipantModel
|
||||
|
||||
|
||||
class ParticipantForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = ParticipantModel
|
||||
fields = "__all__"
|
||||
Reference in New Issue
Block a user