I have a GET form with checkboxes. When i select several boxes and submit the form it produces a link with several variables with the same name. How do i get each value of those variables in the view?
class SearchJobForm(ModelForm):
query = forms.CharField()
types = forms.ModelChoiceField(queryset=JobType.objects.all(), widget=forms.CheckboxSelectMultiple())
class Meta:
model = Job