Based on the form below, I would like to know If Is there a way (or a plugin) to use the field tipo_indicador to filter indicadores field:
tipo_indicador = forms.ModelChoiceField(
queryset=TipoIndicador.objects.all(),
label=u'Tipo de indicador',
required=False,
)
indicadores = forms.ModelMultipleChoiceField(
label= _(u'Indicadores'),
required=False,
queryset=Indicador.objects.all(),
widget=admin_widgets.FilteredSelectMultiple(verbose_name=_(u'indicadores'), is_stacked=False)
)