I just face the same problem. There's probably not id but instance. You'll may resolve relate form's model to database table's Model
forms.py
from .models import DbTable # DbTable is your database table
def StudentRequestForm(forms.ModelForm):
/* your many forms */
class Meta:
model = DbTable
fields = '__all__'