Browse Source

HOT-FIX: desfaz parcialmente commit 8da9143

Campo situação passa a aparecer se sessão estiver aberta.
pull/3256/head
eribeiro 4 years ago
parent
commit
fc37dbde6c
  1. 18
      sapl/templates/relatorios/relatorio_pauta_sessao.html
  2. 18
      sapl/templates/sessao/pauta_sessao_detail.html

18
sapl/templates/relatorios/relatorio_pauta_sessao.html

@ -16,17 +16,20 @@
<h2 class="gray-title">Matérias do Expediente</h2> <h2 class="gray-title">Matérias do Expediente</h2>
{% if materia_expediente %} {% if materia_expediente %}
<table class="grayTable"> <table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
{% for m in materia_expediente %} {% for m in materia_expediente %}
<tr> <tr>
<td style="width:25%;"> <td style="width:20%;">
{{ m.numero }} - {{ m.titulo }}<br /> {{ m.numero }} - {{ m.titulo }}<br />
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:75%;"> <td style="width:60%;">
{{ m.ementa|safe }}<br>{{ m.observacao|linebreaksbr|safe }} {{ m.ementa|safe }}<br>{{ m.observacao|linebreaksbr|safe }}
</td> </td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
@ -36,15 +39,18 @@
<h2 class="gray-title">Matérias da Ordem do Dia</h2> <h2 class="gray-title">Matérias da Ordem do Dia</h2>
{% if materias_ordem %} {% if materias_ordem %}
<table class="grayTable"> <table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
{% for m in materias_ordem %} {% for m in materias_ordem %}
<tr> <tr>
<td style="width:25%;"> <td style="width:20%;">
{{m.numero}} - <b>{{m.titulo}}</b><br /> {{m.numero}} - <b>{{m.titulo}}</b><br />
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

18
sapl/templates/sessao/pauta_sessao_detail.html

@ -38,16 +38,19 @@
<legend>Matérias do Expediente</legend> <legend>Matérias do Expediente</legend>
{% if materia_expediente %} {% if materia_expediente %}
<table class="table table-striped"> <table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
{% for m in materia_expediente %} {% for m in materia_expediente %}
<tr> <tr>
<td style="width:25%;"> <td style="width:20%;">
{{m.numero}} - {{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/> <a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
@ -59,16 +62,19 @@
<legend>Matérias da Ordem do Dia</legend> <legend>Matérias da Ordem do Dia</legend>
{% if materias_ordem %} {% if materias_ordem %}
<table class="table table-striped"> <table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
{% for m in materias_ordem %} {% for m in materias_ordem %}
<tr> <tr>
<td style="width:25%;"> <td style="width:20%;">
{{m.numero}} - {{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/> <a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

Loading…
Cancel
Save