mirror of https://github.com/interlegis/sapl.git
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.
56 lines
1.5 KiB
56 lines
1.5 KiB
9 years ago
|
{% extends "sessao/sessaoplenaria_detail.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block detail_content %}
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
|
||
|
<fieldset>
|
||
9 years ago
|
<legend>{{votacao_titulo}}</legend>
|
||
9 years ago
|
<div>
|
||
9 years ago
|
<b>Matéria:</b> {{materia.materia|safe}}
|
||
9 years ago
|
<br />
|
||
9 years ago
|
<b>Ementa:</b> {{materia.ementa|safe}}
|
||
|
<br />
|
||
|
<br />
|
||
|
<b>Total presentes:</b> {{total_presentes}} (com presidente)
|
||
9 years ago
|
</div>
|
||
9 years ago
|
<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">
|
||
9 years ago
|
{% for tipo in view.get_tipos_votacao %}
|
||
|
<option value="{{tipo.id}}">{{tipo.nome}}</option>
|
||
|
{% endfor %}
|
||
9 years ago
|
</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>
|
||
9 years ago
|
|
||
9 years ago
|
<br /><br />
|
||
|
<input type="submit" value="Salvar" />
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock detail_content %}
|