Skip to content

Commit

Permalink
fix del form
Browse files Browse the repository at this point in the history
  • Loading branch information
eos87 committed Feb 7, 2011
1 parent 44a4c67 commit 92dcb5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encuesta/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class InfluenciaForm(forms.Form):
tipo = forms.MultipleChoiceField(choices=TIPO_CHOICE, label='Modalidad de apoyo')
organizacion = forms.ModelMultipleChoiceField(queryset=None, label='Organizaciones')#, widget=forms.CheckboxSelectMultiple)
organizacion = forms.ModelMultipleChoiceField(queryset=Organizacion.objects.all(), label='Organizaciones')#, widget=forms.CheckboxSelectMultiple)
resultado = forms.ModelMultipleChoiceField(queryset=Resultado.objects.all(), label='Resultados')
periodo = forms.MultipleChoiceField(choices=CHOICE_PERIODO, label='Período')
anio = forms.ChoiceField(choices=CHOICE_ANIO, label='Año')
Expand Down

0 comments on commit 92dcb5f

Please sign in to comment.