Model Form not displaying
So I created a model form but it's not showing in the page but it's registered on the django admin site.views.py[forms.py (https://i.stack.imgur.com/Z3qud.png)models.py the error I keep getting
I tried creating the models using django shell
You need to be correct "__all__"
instead of "all"
class AttendeeForm(ModelForm):
class Meta:
model = Attendee
fields = "__all__"