diff --git a/sapl/templates/sessao/votacao/votacao_bloco.html b/sapl/templates/sessao/votacao/votacao_bloco.html index a1b997249..56dc4b3d9 100644 --- a/sapl/templates/sessao/votacao/votacao_bloco.html +++ b/sapl/templates/sessao/votacao/votacao_bloco.html @@ -45,7 +45,7 @@ {% for o in object_list %} {% if o.tipo_votacao == 1 or o.tipo_votacao == 2 or o.tipo_votacao == 4 %} - 1 %} style="display:none;" {% endif %}> + {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
@@ -182,13 +182,20 @@ $("#but_reg").text("Registrar Votação") if(tipo_votacao == "1"){ $('#form').attr("action", "{% url 'sapl.sessao:votacaoblocosimb' pk %}") + //document.querySelectorAll('tr[class="Leitura"]').map((obj) -> {obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Leitura"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Nominal"]')).map(function(obj){obj.style.display='none'}); } else if(tipo_votacao == "2"){ $('#form').attr("action", "{% url 'sapl.sessao:votacaobloconom' pk %}") + Array.from(document.querySelectorAll('tr[class="Simbolica"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Leitura"]')).map(function(obj){obj.style.display='none'}); } else{ $("#but_reg").text("Registrar Leitura") $('#form').attr("action", "{% url 'sapl.sessao:leitura_em_bloco' pk %}") + Array.from(document.querySelectorAll('tr[class="Simbolica"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Nominal"]')).map(function(obj){obj.style.display='none'}); } }