mirror of https://github.com/interlegis/sapl.git
Ulysses Lara
5 years ago
committed by
Edward
6 changed files with 136 additions and 5 deletions
@ -0,0 +1,47 @@ |
|||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
{% load common_tags %} |
||||
|
{% load static %} |
||||
|
|
||||
|
|
||||
|
<head> |
||||
|
<style> |
||||
|
@page{ |
||||
|
@bottom-right { |
||||
|
content: "Página" counter(page); |
||||
|
height: 3cm; |
||||
|
font-size: 8pt; |
||||
|
} |
||||
|
@bottom-center { |
||||
|
border-top: 1px solid black; |
||||
|
font-size: 8pt; |
||||
|
height: 1cm; |
||||
|
content: "{{rodape|safe}}"; |
||||
|
font-style:italic; |
||||
|
} |
||||
|
@bottom-left { |
||||
|
content: "{{data}}"; |
||||
|
height: 3cm; |
||||
|
font-size: 8pt; |
||||
|
} |
||||
|
@top-center { |
||||
|
content: string(title); |
||||
|
} |
||||
|
header { |
||||
|
width: 0; |
||||
|
height: 0; |
||||
|
visibility: hidden; |
||||
|
string-set: title content(); |
||||
|
} |
||||
|
} |
||||
|
</style> |
||||
|
<link rel="stylesheet" href="{% static '/sapl/css/relatorio.css'%}"> |
||||
|
</head> |
||||
|
|
||||
|
<body> |
||||
|
|
||||
|
{% block content %} |
||||
|
|
||||
|
{% endblock content %} |
||||
|
|
||||
|
</body> |
@ -0,0 +1,71 @@ |
|||||
|
{% extends "relatorios/base_relatorio.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
{% load common_tags %} |
||||
|
{% load static %} |
||||
|
|
||||
|
{% 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 %} |
||||
|
<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:', ' }} |
||||
|
</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 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:', ' }} |
||||
|
</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 %} |
Loading…
Reference in new issue