Sistema de Apoio ao Processo Legislativo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.7 KiB

{% extends "sessao/sessaoplenaria_detail.html" %}
{% load i18n %}
{% block detail_content %}
<form id="form-votacao" method="post">
{% csrf_token %}
<fieldset>
{% if form.errors %}
<div class="alert-box alert">
<b><h4>Os seguintes erros foram encontrados:</h4></b>
<ul>
{% for field in form %}
{% if field.label == 'total'%}
<li>O total de votos não corresponde com a quantidade de presentes!</li>
{% endif %}
{% if field.errors and not field.label == 'total' %}
<li>O campo <b>{{field.label}}</b> é obrigatório!</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
9 years ago
<legend>{{votacao_titulo}}</legend>
<div>
9 years ago
<b>Matéria:</b> {{materia.materia|safe}}
<br />
9 years ago
<b>Ementa:</b> {{materia.ementa|safe}}
<br />
<br />
<b>Total presentes:</b> {{total_presentes}} (com presidente)
<input type="hidden" id="total_votos" name="total_votos">
</div>
<br />
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
<li>Sim: <input type="text" id="votos_sim" name="votos_sim" value=""/></li>
<li>Não: <input type="text" id="votos_nao" name="votos_nao" value=""/></li>
<li>Abstenções: <input type="text" id="abstencoes" name="abstencoes" value=""/></li>
</ul>
<ul class="small-block-grid-2 medium-block-grid-2 large-block-grid-2">
<li>
A totalização inclui o voto do Presidente?
<select id="voto_presidente" name="voto_presidente">
<option value="1">Sim</option>
<option value="0" selected>Não</option>
</select>
</li>
<li>
Resultado da Votação
<select id="resultado_votacao" name="resultado_votacao">
{% for tipo in view.get_tipos_votacao %}
<option value="{{tipo.id}}">{{tipo.nome}}</option>
{% endfor %}
</select>
</li>
</ul>
<ul class="small-block-grid-1 medium-block-grid-1 large-block-grid-1">
<li>
Observações
<textarea id="observacao" name="observacao" cols="10" rows="10"></textarea>
</li>
</ul>
<br /><br />
<input id="salvar-votacao" name="salvar-votacao" type="submit" value="Salvar" />
</fieldset>
</form>
{% endblock detail_content %}
{% block foot_js %}
<script language="JavaScript">
// $(document).ready(function() {
// $('#salvar-votacao').click(function(e){
// var presentes = Number($("#total_presentes").val())
// var sim = Number($("#votos_sim").val())
// var nao = Number($("#votos_nao").val())
// var abstencoes = Number($("#abstencoes").val())
// var total = sim + nao + abstencoes
// if (total < presentes) {
// alert('quantidade invalida')
// return false;
// }
// $("#form-votacao").submit()
// });
// });
</script>
{% endblock %}