mirror of https://github.com/interlegis/sapl.git
Rogério Frá
6 years ago
committed by
Edward
10 changed files with 52 additions and 34 deletions
@ -1,9 +1,11 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
{% if expedientes %} |
|||
<strong>Expedientes: </strong> |
|||
{% for e in expedientes %} |
|||
<b>{{e.tipo}}</b>: |
|||
{{e.conteudo|striptags|safe}} |
|||
{% endfor %} |
|||
{% endif %} |
|||
</p> |
|||
</fieldset> |
|||
|
@ -1,10 +1,12 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
{% if mesa %} |
|||
<strong>Mesa Diretora: </strong> |
|||
{% for m in mesa %} |
|||
{{m.cargo}}: |
|||
{{m.parlamentar.nome_parlamentar}} / {{ m.parlamentar.filiacao_atual }} ; |
|||
{% endfor %} |
|||
{% endif %} |
|||
</p> |
|||
|
|||
</fieldset> |
@ -1,6 +1,8 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
{% if object.ocorrenciasessao.conteudo %} |
|||
<strong>Ocorrências da Sessão: </strong> |
|||
{{object.ocorrenciasessao.conteudo|striptags|safe}} |
|||
{% endif %} |
|||
</p> |
|||
</fieldset> |
|||
|
@ -1,9 +1,11 @@ |
|||
<fieldset> |
|||
<p align="justify"> |
|||
{% if oradores_explicacoes %} |
|||
<strong>Oradores das Explicações Pessoais: </strong> |
|||
{% for o in oradores_explicacoes %} |
|||
<b>{{o.numero_ordem}}</b> - {{o.parlamentar.nome_parlamentar}} / {{ o.parlamentar.filiacao_atual }} ; |
|||
{{o.url_discurso}} |
|||
{% endfor %} |
|||
{% endif %} |
|||
</p> |
|||
</fieldset> |
Loading…
Reference in new issue