From 253465641f45cd5de4b613a992e5b1bcccd509fe Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Wed, 21 Oct 2015 16:00:23 -0200 Subject: [PATCH] =?UTF-8?q?Refactor=20Proposicoes=20(Recebidas,=20N=C3=A3o?= =?UTF-8?q?=20Recebidas,=20Incorporadas)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protocoloadm/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocoloadm/views.py b/protocoloadm/views.py index c1b61e6f6..82b040751 100644 --- a/protocoloadm/views.py +++ b/protocoloadm/views.py @@ -513,7 +513,7 @@ class ProposicoesNaoRecebidasView(TemplateView): paginate_by = 10 def get_queryset(self): - return Proposicao.objects.filter(data_envio__isnull=False, status='E') + return Proposicao.objects.filter(data_envio__isnull=False, status='E') class ProposicoesNaoIncorporadasView(TemplateView):