|
|
@ -3,94 +3,96 @@ |
|
|
|
|
|
|
|
{% block base_content %} |
|
|
|
|
|
|
|
<form method="POST" enctype="application/x-www-form-urlencoded" id="form" action="{% url 'sapl.sessao:votacaoblocosimb' pk %}"> |
|
|
|
{% csrf_token %} |
|
|
|
<br><br> |
|
|
|
<table class="table table-striped table-bordered"> |
|
|
|
<thead class="thead-default"> |
|
|
|
{% if sessao_iniciada %} |
|
|
|
<form method="POST" enctype="application/x-www-form-urlencoded" id="form" action="{% url 'sapl.sessao:votacaoblocosimb' pk %}"> |
|
|
|
{% csrf_token %} |
|
|
|
<br><br> |
|
|
|
<table class="table table-striped table-bordered"> |
|
|
|
<thead class="thead-default"> |
|
|
|
<tr> |
|
|
|
<td><h3>{% trans "Tipo de Votação" %}</h3></td> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tr> |
|
|
|
<td><h3>{% trans "Tipo de Votação" %}</h3></td> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tr> |
|
|
|
<td class="col-md-12"> |
|
|
|
<fieldset id="tipo_votacao" name="tipo"> |
|
|
|
<input type="radio" name="tipo_votacao" id="tipo_votacao_1" value="1" onchange="alteraTipoVotacao()" checked="checked"> <label for="tipo">Simbólica</label> |
|
|
|
</br> |
|
|
|
<input type="radio" name="tipo_votacao" id="tipo_votacao_2" value="2" onchange="alteraTipoVotacao()" > <label for="tipo">Nominal</label> |
|
|
|
</br> |
|
|
|
</fieldset> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
|
|
|
|
<br> |
|
|
|
<h3 id='frase_selecione'>Selecione o(s) expediente(s) desejado(s).</h3> |
|
|
|
<table id='tab_ordens' class="table table-striped table-bordered"> |
|
|
|
<thead class="thead-default"> |
|
|
|
<tr> |
|
|
|
<td><h3>{% trans "Expediente" %}</h3></td> |
|
|
|
<td class="col-md-12"> |
|
|
|
<fieldset id="tipo_votacao" name="tipo"> |
|
|
|
<input type="radio" name="tipo_votacao" id="tipo_votacao_1" value="1" onchange="alteraTipoVotacao()" checked="checked"> <label for="tipo">Simbólica</label> |
|
|
|
</br> |
|
|
|
<input type="radio" name="tipo_votacao" id="tipo_votacao_2" value="2" onchange="alteraTipoVotacao()" > <label for="tipo">Nominal</label> |
|
|
|
</br> |
|
|
|
</fieldset> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
</table> |
|
|
|
|
|
|
|
<br> |
|
|
|
<h3 id='frase_selecione'>Selecione o(s) expediente(s) desejado(s).</h3> |
|
|
|
<table id='tab_ordens' class="table table-striped table-bordered"> |
|
|
|
<thead class="thead-default"> |
|
|
|
<tr> |
|
|
|
<td><h3>{% trans "Expediente" %}</h3></td> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
|
|
|
|
<div class="checkbox" id="check_all"> |
|
|
|
<label for="id_check_all"> |
|
|
|
<input type="checkbox" id="id_check_all" onchange="checkAll(this)" /> Marcar/Desmarcar Todos |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
<div class="checkbox" id="check_all"> |
|
|
|
<label for="id_check_all"> |
|
|
|
<input type="checkbox" id="id_check_all" onchange="checkAll(this)" /> Marcar/Desmarcar Todos |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
{% for o in expedientes %} |
|
|
|
{% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %} |
|
|
|
<tr class="{% if o.tipo_votacao == 1 %}Simbolica{% else %}Nominal{% endif %}" {% if o.tipo_votacao == 2 %} style="display:none;" {% endif %}> |
|
|
|
<td> |
|
|
|
<input type="checkbox" name="marcadas_{{o.tipo_votacao}}" id="{{o.id}}" value="{{o.id}}" {% if check %} checked {% endif %}> |
|
|
|
<strong><a href="{% url 'sapl.materia:materialegislativa_detail' o.id %}">{{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}</strong></a></br> |
|
|
|
{% if o.materia.numeracao_set.last %} |
|
|
|
<strong>Processo:</strong> {{o.materia.numeracao_set.last}}</br> |
|
|
|
{% endif %} |
|
|
|
<strong>Autor:</strong> |
|
|
|
{% for a in o.materia.autoria_set.all %} |
|
|
|
{% if not forloop.first %} |
|
|
|
, {{a.autor|default_if_none:""}} |
|
|
|
{% else %} |
|
|
|
{{a.autor|default_if_none:""}} |
|
|
|
{% for o in expedientes %} |
|
|
|
{% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %} |
|
|
|
<tr class="{% if o.tipo_votacao == 1 %}Simbolica{% else %}Nominal{% endif %}" {% if o.tipo_votacao == 2 %} style="display:none;" {% endif %}> |
|
|
|
<td> |
|
|
|
<input type="checkbox" name="marcadas_{{o.tipo_votacao}}" id="{{o.id}}" value="{{o.id}}" {% if check %} checked {% endif %}> |
|
|
|
<strong><a href="{% url 'sapl.materia:materialegislativa_detail' o.id %}">{{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}</strong></a></br> |
|
|
|
{% if o.materia.numeracao_set.last %} |
|
|
|
<strong>Processo:</strong> {{o.materia.numeracao_set.last}}</br> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
</br> |
|
|
|
{% if o.materia.numero_protocolo %} |
|
|
|
<strong>Protocolo:</strong> {{o.materia.numero_protocolo}}</br> |
|
|
|
{% endif %} |
|
|
|
{% if o.materia.tramitacao_set.last %} |
|
|
|
{% if o.materia.tramitacao_set.last.turno %} |
|
|
|
<strong>Turno:</strong> |
|
|
|
{% for t in turno_choices %} |
|
|
|
{% if t.0 == o.materia.tramitacao_set.last.turno %} |
|
|
|
{{ t.1 }} |
|
|
|
{% endif %} |
|
|
|
{% endfor %}</br> |
|
|
|
<strong>Autor:</strong> |
|
|
|
{% for a in o.materia.autoria_set.all %} |
|
|
|
{% if not forloop.first %} |
|
|
|
, {{a.autor|default_if_none:""}} |
|
|
|
{% else %} |
|
|
|
{{a.autor|default_if_none:""}} |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
</br> |
|
|
|
{% if o.materia.numero_protocolo %} |
|
|
|
<strong>Protocolo:</strong> {{o.materia.numero_protocolo}}</br> |
|
|
|
{% endif %} |
|
|
|
{% if o.materia.tramitacao_set.last %} |
|
|
|
{% if o.materia.tramitacao_set.last.turno %} |
|
|
|
<strong>Turno:</strong> |
|
|
|
{% for t in turno_choices %} |
|
|
|
{% if t.0 == o.materia.tramitacao_set.last.turno %} |
|
|
|
{{ t.1 }} |
|
|
|
{% endif %} |
|
|
|
{% endfor %}</br> |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
<strong>Ementa:</strong> {{ o.ementa|safe }}</br> |
|
|
|
<p></p> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
<strong>Ementa:</strong> {{ o.ementa|safe }}</br> |
|
|
|
<p></p> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
|
|
|
|
<table class="table table-striped table-bordered" style="display:none" id="nenhum_exp"> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<h3>Nenhuma matéria do expediente aberta.</h3> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
<table class="table table-striped table-bordered" style="display:none" id="nenhum_exp"> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<h3>Nenhuma matéria do expediente aberta.</h3> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
|
|
|
|
<a href="{% url 'sapl.sessao:expedientemateria_list' pk %}" class="btn btn-warning mb-3" id="but_cancel">Voltar</a> |
|
|
|
<input type="submit" value="Registrar votação" class="btn btn-primary mb-3 float-right" id="but_reg"> |
|
|
|
<a href="{% url 'sapl.sessao:expedientemateria_list' pk %}" class="btn btn-warning mb-3" id="but_cancel">Voltar</a> |
|
|
|
<input type="submit" value="Registrar votação" class="btn btn-primary mb-3 float-right" id="but_reg"> |
|
|
|
|
|
|
|
<input type="hidden" id="origem" name="origem" value="expediente"> |
|
|
|
</form> |
|
|
|
<input type="hidden" id="origem" name="origem" value="expediente"> |
|
|
|
</form> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endblock base_content %} |
|
|
|
|
|
|
|