[Fixed]-How to add a new group but teacher has to come from a list

1👍

Just define the Form as a ModelForm for Group, theres no need to do this all manually

class GroupForm(ModelForm):
    class Meta:
        model = Group
👤Sayse

Leave a comment