|
|
@ -16,12 +16,39 @@ |
|
|
</thead> |
|
|
</thead> |
|
|
</table> |
|
|
</table> |
|
|
</fieldset> |
|
|
</fieldset> |
|
|
|
|
|
|
|
|
|
|
|
<fieldset> |
|
|
|
|
|
<legend>Expediente</legend> |
|
|
|
|
|
{% if expedientes %} |
|
|
|
|
|
<table class="table table-striped"> |
|
|
|
|
|
<thead> |
|
|
|
|
|
<tr> |
|
|
|
|
|
<th>Sessão Plenaria</th> |
|
|
|
|
|
<th>conteudo</th> |
|
|
|
|
|
<th>tipo</th> |
|
|
|
|
|
</tr> |
|
|
|
|
|
</thead> |
|
|
|
|
|
{% for e in expedientes %} |
|
|
|
|
|
{% if e.conteudo %} |
|
|
|
|
|
<tr> |
|
|
|
|
|
<td style="width:20%;">{{e.sessao_plenaria}}</td> |
|
|
|
|
|
<td style="width:70%;"><br>{{e.conteudo|safe|linebreaksbr}}</td> |
|
|
|
|
|
<td style="width:10%;">{{e.tipo}}</td> |
|
|
|
|
|
</tr> |
|
|
|
|
|
{% endif%} |
|
|
|
|
|
{% endfor %} |
|
|
|
|
|
</table> |
|
|
|
|
|
{% else %} |
|
|
|
|
|
<strong>Não existem Matérias de Ordem do Dia para essa Sessão Plenária</strong> |
|
|
|
|
|
{% endif %} |
|
|
|
|
|
</fieldset> |
|
|
|
|
|
|
|
|
<fieldset> |
|
|
<fieldset> |
|
|
<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> |
|
|
<thead> |
|
|
<tr> |
|
|
<tr> |
|
|
<th>Matéria</th> |
|
|
<th>Matéria</th> |
|
|
<th>Ementa</th> |
|
|
<th>Ementa</th> |
|
|
<th>Situação</th> |
|
|
<th>Situação</th> |
|
|
|