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.
70 lines
3.8 KiB
70 lines
3.8 KiB
{% extends "relatorios/base_relatorio.html" %}
|
|
{% load common_tags %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<h3 style="text-align:center;">Ata Eletrônica da {{sessaoplenaria}}</h3>
|
|
{% include 'sessao/blocos_ata/identificacao_basica.html' %}
|
|
{% include 'sessao/blocos_ata/mesa_diretora.html' %}
|
|
{% include 'sessao/blocos_ata/lista_presenca.html' %}
|
|
{% include 'sessao/blocos_ata/expedientes.html' %}
|
|
{% include 'sessao/blocos_ata/materias_expediente.html' %}
|
|
{% include 'sessao/blocos_ata/oradores_expediente.html' %}
|
|
{% include 'sessao/blocos_ata/lista_presenca_ordem_dia.html' %}
|
|
{% include 'sessao/blocos_ata/materias_ordem_dia.html' %}
|
|
{% include 'sessao/blocos_ata/oradores_ordemdia.html' %}
|
|
{% include 'sessao/blocos_ata/oradores_explicacoes.html' %}
|
|
{% include 'sessao/blocos_ata/ocorrencias_da_sessao.html' %}
|
|
|
|
{% if assinatura_mesa or assinatura_presentes %}
|
|
|
|
<div style="padding:5px;margin-top:50px;border-top: 1px solid black;">
|
|
<legend >{{texto_assinatura}}</legend>
|
|
|
|
<table style="margin-top:80px">
|
|
<colgroup>
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
{% for p in assinatura_mesa %}
|
|
{% if forloop.counter0|divisibleby:2 %}
|
|
<tr style="margin-top:20px">
|
|
<td>
|
|
<div style="float: left; position: relative; top: -50px; left: 8px; width: 120px">____________________ </br>
|
|
<p style="font-size:8pt"><b>{{p.cargo}}: </b> {{p.parlamentar.nome_completo}} / {% if p.parlamentar|filiacao_data_filter:object.data_inicio %} {{ p.parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %}</p>
|
|
</br></br></br>
|
|
</div>
|
|
{% else %}
|
|
<div style="float: left; position: relative; top: -50px; left: 142px; width: 120px; margin-right:-220px;">____________________ </br>
|
|
<p style="font-size:8pt"><b>{{p.cargo}}: </b> {{p.parlamentar.nome_completo}} / {% if p.parlamentar|filiacao_data_filter:object.data_inicio %} {{ p.parlamentar|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %}</p>
|
|
</br></br></br>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for p in assinatura_presentes %}
|
|
{% if forloop.counter0|divisibleby:2 %}
|
|
<tr style="margin-top:20px">
|
|
<td>
|
|
<div style="float: left; position: relative;top: -50px; left: 8px; width: 120px;">_____________________</br>
|
|
<p style="font-size:8pt">
|
|
{{p.nome_completo}} / {% if p|filiacao_data_filter:object.data_inicio %} {{ p|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %}</p>
|
|
</br></br></br>
|
|
</div>
|
|
{% else %}
|
|
<div style="float: left; position: relative; top: -50px;left: 142px; width: 120px; margin-right:-220px;">_____________________ </br>
|
|
<p style="font-size:8pt">{{p.nome_completo}} / {% if p|filiacao_data_filter:object.data_inicio %} {{ p|filiacao_data_filter:object.data_inicio }} {% else %} Sem partido {% endif %}</p>
|
|
</br></br></br>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif%}
|
|
</div>
|
|
|
|
|
|
{% endblock content %}
|
|
|