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>
{% if materia_expediente %}
<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 %}
<tr>
<td style="width:25%;">
<td style="width:20%;">
{{ m.numero }} - {{ m.titulo }}<br />
<b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td>
<td style="width:75%;">
<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>
@ -36,15 +39,18 @@
<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></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 %}
<tr>
<td style="width:25%;">
<td style="width:20%;">
{{m.numero}} - <b>{{m.titulo}}</b><br />
<b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>

18
sapl/templates/sessao/pauta_sessao_detail.html

@ -38,16 +38,19 @@
<legend>Matérias do Expediente</legend>
{% if materia_expediente %}
<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 %}
<tr>
<td style="width:25%;">
<td style="width:20%;">
{{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>
@ -59,16 +62,19 @@
<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></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 %}
<tr>
<td style="width:25%;">
<td style="width:20%;">
{{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</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>
{% endfor %}
</table>

Loading…
Cancel
Save