Browse Source

Lista ano em ordem decrescente em pesquisa norma

pull/776/head
Edward Ribeiro 8 years ago
parent
commit
a50d1a1878
  1. 2
      sapl/norma/forms.py

2
sapl/norma/forms.py

@ -84,7 +84,7 @@ class NormaJuridicaPesquisaForm(ModelForm):
ano = forms.ModelChoiceField( ano = forms.ModelChoiceField(
label='Ano', label='Ano',
required=False, required=False,
queryset=NormaJuridica.objects.order_by('ano').values_list( queryset=NormaJuridica.objects.order_by('-ano').values_list(
'ano', flat=True).distinct(), 'ano', flat=True).distinct(),
empty_label='Selecione' empty_label='Selecione'
) )

Loading…
Cancel
Save