From 6461b61ad9a1461c447e0dda6f26e12e4354eed4 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 6 Nov 2018 20:18:58 -0200 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20conserta=20ordena=C3=A7=C3=A3o=20de?= =?UTF-8?q?=20parlamentares?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/sessao/views.py | 2 +- sapl/templates/sessao/votacao/nominal_transparencia.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/sessao/views.py b/sapl/sessao/views.py index 766a6976e..f1280b803 100755 --- a/sapl/sessao/views.py +++ b/sapl/sessao/views.py @@ -2356,7 +2356,7 @@ class VotacaoNominalTransparenciaDetailView(TemplateView): context['votacao'] = votacao voto_parlamentar = VotoParlamentar.objects.filter( - votacao=votacao) + votacao=votacao).order_by('parlamentar__nome_parlamentar') context['voto_parlamentar'] = voto_parlamentar diff --git a/sapl/templates/sessao/votacao/nominal_transparencia.html b/sapl/templates/sessao/votacao/nominal_transparencia.html index cb0bb25e2..e373e7b03 100644 --- a/sapl/templates/sessao/votacao/nominal_transparencia.html +++ b/sapl/templates/sessao/votacao/nominal_transparencia.html @@ -21,7 +21,7 @@
{{v.parlamentar}} - {% if v.voto == '-1'%} - Voto não Registrado + Voto não registrado {% else %} {{v.voto}} {% endif %}