From f93c88e0a286d9c18a1022179b615d1103200d53 Mon Sep 17 00:00:00 2001 From: cristian-longhi Date: Wed, 28 Jun 2017 14:07:14 -0300 Subject: [PATCH] =?UTF-8?q?Corrige=20filtragem=20de=20mat=C3=A9ria=20pelo?= =?UTF-8?q?=20campo=20Em=20tramita=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/materia/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/materia/forms.py b/sapl/materia/forms.py index d2368f96c..311e85b8e 100644 --- a/sapl/materia/forms.py +++ b/sapl/materia/forms.py @@ -52,8 +52,8 @@ def ANO_CHOICES(): def em_tramitacao(): return [('', 'Tanto Faz'), - (True, 'Sim'), - (False, 'Não')] + (1, 'Sim'), + (0, 'Não')] class AdicionarVariasAutoriasFilterSet(django_filters.FilterSet):