From 7734b3f96da98dd0b3cda84b6da764ab66dbb79e Mon Sep 17 00:00:00 2001 From: Ulysses Lara Date: Wed, 11 Dec 2019 16:24:57 -0300 Subject: [PATCH] =?UTF-8?q?Melhorando=20apresenta=C3=A7=C3=A3o=20de=20voto?= =?UTF-8?q?s=20do=20painel=20Fix=20#3041=20(#3052)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Melhorando apresentação de votos do painel Fix #3041 * Adaptando para o que foi relatado no PR --- sapl/templates/painel/index.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/sapl/templates/painel/index.html b/sapl/templates/painel/index.html index f8abb3e4b..8f8675976 100644 --- a/sapl/templates/painel/index.html +++ b/sapl/templates/painel/index.html @@ -291,11 +291,7 @@ + '') } else{ - $('#parlamentares_list').append(' ' + - parlamentar.nome + - ' ' + - parlamentar.partido + ' ' - + show_voto(parlamentar.voto) + '') + $('#parlamentares_list').append(show_voto(parlamentar)) } }); @@ -476,15 +472,21 @@ })(); }); - function show_voto(voto) { - if (voto == "Sim"){ - return ' Sim ' + function show_voto(parlamentar) { + color = 'white' + if (parlamentar.voto == "Sim"){ + color = 'green' } - else if (voto == "Não"){ - return ' Não ' + else if (parlamentar.voto == "Não"){ + color = 'red' } - return voto + + return (' ' + + `${parlamentar.nome} ` + + `${parlamentar.partido} ` + + `${parlamentar.voto} `) } +