|
|
|
@ -6,66 +6,47 @@ |
|
|
|
|
|
|
|
{% block content %} |
|
|
|
<h2 class="gray-title">Identificação Básica</h2> |
|
|
|
{% for b in basica %} |
|
|
|
{{b}}<br/> |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
<h2 class="gray-title">Expedientes</h2> |
|
|
|
{% for e in expedientes %} |
|
|
|
<b>{{e.tipo}}: </b><br/> |
|
|
|
<p>{{e.conteudo|safe}}</p> |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
<h2 class="gray-title">Matérias do Expediente</h2> |
|
|
|
{% if materia_expediente %} |
|
|
|
{% for b in basica %} |
|
|
|
{{ b }}<br/> |
|
|
|
{% endfor %} |
|
|
|
<h2 class="gray-title">Expedientes</h2> |
|
|
|
{% for e in expedientes %} |
|
|
|
<b>{{ e.tipo }}: </b><br/><p>{{ e.conteudo|safe }}</p> |
|
|
|
{% endfor %} |
|
|
|
<h2 class="gray-title">Matérias do Expediente</h2> |
|
|
|
{% if materia_expediente %} |
|
|
|
<table class="grayTable"> |
|
|
|
<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%;"> |
|
|
|
{{m.numero}} - {{m.titulo}} |
|
|
|
<br /> |
|
|
|
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} |
|
|
|
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> |
|
|
|
{% for m in materia_expediente %} |
|
|
|
<tr> |
|
|
|
<td style="width:20%;"> |
|
|
|
{{ m.numero }} - {{ m.titulo }}<br /> |
|
|
|
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} |
|
|
|
</td> |
|
|
|
<td style="width:70%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> |
|
|
|
<td style="width:10%;">{{m.situacao}}</td> |
|
|
|
<td style="width:70%;"> |
|
|
|
{{ m.ementa|safe }}<br>{{ m.observacao|linebreaksbr|safe }} |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% else %} |
|
|
|
<b>Não existem Matérias de Expediente para essa Sessão Plenária</b> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
<h2 class="gray-title">Matérias da Ordem do Dia</h2> |
|
|
|
{% if materias_ordem %} |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% else %} |
|
|
|
<b>Não existem Matérias de Expediente para essa Sessão Plenária</b> |
|
|
|
{% endif %} |
|
|
|
<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> |
|
|
|
<th>Situação</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
{% for m in materias_ordem %} |
|
|
|
<tr> |
|
|
|
<td style="width:20%;"> |
|
|
|
{{m.numero}} - <b">{{m.titulo}}</b> |
|
|
|
<br /> |
|
|
|
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} |
|
|
|
<thead><tr><th>Matéria</th><th>Ementa</th></tr></thead> |
|
|
|
{% for m in materias_ordem %} |
|
|
|
<tr> |
|
|
|
<td style="width:20%;"> |
|
|
|
{{m.numero}} - <b">{{m.titulo}}</b><br /> |
|
|
|
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} |
|
|
|
</td> |
|
|
|
<td style="width:70%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> |
|
|
|
<td style="width:10%;">{{m.situacao}}</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% else %} |
|
|
|
<b>Não existem Matérias de Ordem do Dia para essa Sessão Plenária</b> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endblock content %} |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% else %} |
|
|
|
<b>Não existem Matérias de Ordem do Dia para essa Sessão Plenária</b> |
|
|
|
{% endif %} |
|
|
|
{% endblock content %} |
|
|
|
|