Browse Source

HOT-FIX: retira condicional de situação

pull/3256/head
eribeiro 4 years ago
parent
commit
3d9349e881
  1. 8
      sapl/templates/relatorios/relatorio_pauta_sessao.html
  2. 8
      sapl/templates/sessao/pauta_sessao_detail.html

8
sapl/templates/relatorios/relatorio_pauta_sessao.html

@ -16,7 +16,7 @@
<h2 class="gray-title">Matérias do Expediente</h2>
{% if materia_expediente %}
<table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
<thead><tr><th>Matéria</th><th>Ementa</th><th>Situação</th></tr></thead>
{% for m in materia_expediente %}
<tr>
<td style="width:20%;">
@ -27,9 +27,7 @@
<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>
{% endfor %}
</table>
@ -39,7 +37,7 @@
<h2 class="gray-title">Matérias da Ordem do Dia</h2>
{% if materias_ordem %}
<table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
<thead><tr><th>Matéria</th><th>Ementa</th><th>Situação</th></tr></thead>
{% for m in materias_ordem %}
<tr>
<td style="width:20%;">
@ -48,9 +46,7 @@
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>

8
sapl/templates/sessao/pauta_sessao_detail.html

@ -38,7 +38,7 @@
<legend>Matérias do Expediente</legend>
{% if materia_expediente %}
<table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
<thead><tr><th>Matéria</th><th>Ementa</th> <th>Situação</th> </tr></thead>
{% for m in materia_expediente %}
<tr>
<td style="width:20%;">
@ -48,9 +48,7 @@
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>
@ -62,7 +60,7 @@
<legend>Matérias da Ordem do Dia</legend>
{% if materias_ordem %}
<table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead>
<thead><tr><th>Matéria</th><th>Ementa</th> <th>Situação</th> </tr></thead>
{% for m in materias_ordem %}
<tr>
<td style="width:20%;">
@ -72,9 +70,7 @@
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>

Loading…
Cancel
Save