Django form does not appear
问题 I'm working with building a webpage with a form using Django's Form class. I've included some sample code snippets but my problem is that I've followed the Django docs and the tutorial in Djangobook but can't get my Form to actually display on the page. forms.py from django import forms class ResearchForm(forms.Form): fam_choices = ... spec_choices = ... family = forms.ChoiceField(choices=fam_choices, required=True) species = forms.ChoiceField(choices=spec_choices, required=True) views.py