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> |
<fieldset> |
||||
<p align="justify"> |
<p align="justify"> |
||||
|
{% if expedientes %} |
||||
<strong>Expedientes: </strong> |
<strong>Expedientes: </strong> |
||||
{% for e in expedientes %} |
{% for e in expedientes %} |
||||
<b>{{e.tipo}}</b>: |
<b>{{e.tipo}}</b>: |
||||
{{e.conteudo|striptags|safe}} |
{{e.conteudo|striptags|safe}} |
||||
{% endfor %} |
{% endfor %} |
||||
|
{% endif %} |
||||
</p> |
</p> |
||||
</fieldset> |
</fieldset> |
||||
|
@ -1,10 +1,12 @@ |
|||||
<fieldset> |
<fieldset> |
||||
<p align="justify"> |
<p align="justify"> |
||||
|
{% if mesa %} |
||||
<strong>Mesa Diretora: </strong> |
<strong>Mesa Diretora: </strong> |
||||
{% for m in mesa %} |
{% for m in mesa %} |
||||
{{m.cargo}}: |
{{m.cargo}}: |
||||
{{m.parlamentar.nome_parlamentar}} / {{ m.parlamentar.filiacao_atual }} ; |
{{m.parlamentar.nome_parlamentar}} / {{ m.parlamentar.filiacao_atual }} ; |
||||
{% endfor %} |
{% endfor %} |
||||
|
{% endif %} |
||||
</p> |
</p> |
||||
|
|
||||
</fieldset> |
</fieldset> |
@ -1,6 +1,8 @@ |
|||||
<fieldset> |
<fieldset> |
||||
<p align="justify"> |
<p align="justify"> |
||||
|
{% if object.ocorrenciasessao.conteudo %} |
||||
<strong>Ocorrências da Sessão: </strong> |
<strong>Ocorrências da Sessão: </strong> |
||||
{{object.ocorrenciasessao.conteudo|striptags|safe}} |
{{object.ocorrenciasessao.conteudo|striptags|safe}} |
||||
|
{% endif %} |
||||
</p> |
</p> |
||||
</fieldset> |
</fieldset> |
||||
|
@ -1,9 +1,11 @@ |
|||||
<fieldset> |
<fieldset> |
||||
<p align="justify"> |
<p align="justify"> |
||||
|
{% if oradores_explicacoes %} |
||||
<strong>Oradores das Explicações Pessoais: </strong> |
<strong>Oradores das Explicações Pessoais: </strong> |
||||
{% for o in oradores_explicacoes %} |
{% for o in oradores_explicacoes %} |
||||
<b>{{o.numero_ordem}}</b> - {{o.parlamentar.nome_parlamentar}} / {{ o.parlamentar.filiacao_atual }} ; |
<b>{{o.numero_ordem}}</b> - {{o.parlamentar.nome_parlamentar}} / {{ o.parlamentar.filiacao_atual }} ; |
||||
{{o.url_discurso}} |
{{o.url_discurso}} |
||||
{% endfor %} |
{% endfor %} |
||||
|
{% endif %} |
||||
</p> |
</p> |
||||
</fieldset> |
</fieldset> |
Loading…
Reference in new issue