from django import forms
from .models import Alumno, Responsable, Curso


class AlumnoChangeListForm(forms.ModelForm):

    # here we only need to define the field we want to be editable
    curso = forms.ModelMultipleChoiceField(queryset=Curso.objects.all(), 
        required=False)