|
|
@ -1,6 +1,7 @@ |
|
|
|
{% load i18n %} |
|
|
|
{% load staticfiles sass_tags %} |
|
|
|
{% load common_tags %} |
|
|
|
|
|
|
|
<!DOCTYPE HTML> |
|
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> |
|
|
|
<!--[if gt IE 8]><!--> |
|
|
@ -72,7 +73,7 @@ |
|
|
|
|
|
|
|
<div class="row container-detail clearfix"> |
|
|
|
<div class="row-fluid"> |
|
|
|
<div class="col-md-4"> |
|
|
|
<div class="col-md-4" id="aparecer_oradores"> |
|
|
|
<h2><font color="#459170"><p align="center" style="font-family:Verdana">Oradores</p></b></font></h2> |
|
|
|
<table align="center"> |
|
|
|
<tr> |
|
|
@ -104,16 +105,17 @@ |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</br> |
|
|
|
<div class="col-md-4"> |
|
|
|
<h2><font color="#459170"><p align="center" style="font-family:Verdana">Matéria em Votação</p></font></h2> |
|
|
|
<table style="width:75%; border:1px;" align="center"> |
|
|
|
<tr><th style="text-align:center"><h4><font color="white"><span id="materia_legislativa_texto"></span></font></h4></th></tr> |
|
|
|
<tr><th style="text-align:center"><h4><font color="white"><span id="observacao_materia"></span></font></h4></th></tr> |
|
|
|
<tr><th style="text-align:center"><h2><font color="#45919D"><span id="resultado_votacao"></span></font></h2></th></tr> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</body> |
|
|
|
|
|
|
|
<script type="text/javascript"> |
|
|
@ -226,6 +228,8 @@ |
|
|
|
}); |
|
|
|
presentes.append('</table>') |
|
|
|
|
|
|
|
if (data["oradores"].length > 0){ |
|
|
|
$('#aparecer_oradores').show(); |
|
|
|
oradores.append('<table id="oradores_list">'); |
|
|
|
jQuery.each(oradores_list, function (index, orador) { |
|
|
|
$('#oradores_list').append('<tr><td style="padding-right:20px; color:white" >' + |
|
|
@ -233,7 +237,10 @@ |
|
|
|
orador.nome +'</td></tr>') |
|
|
|
}); |
|
|
|
oradores.append('</table>'); |
|
|
|
|
|
|
|
} |
|
|
|
else { |
|
|
|
$('#aparecer_oradores').hide(); |
|
|
|
} |
|
|
|
} |
|
|
|
else{ |
|
|
|
presentes.append('<span id="parlamentares_list">'); |
|
|
@ -357,3 +364,4 @@ |
|
|
|
} |
|
|
|
</script> |
|
|
|
</html> |
|
|
|
|
|
|
|