mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Impressos</title>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body id="corpo">
|
|
{% if titulo %}
|
|
<div id="titulo">
|
|
<strong class="text_pdf">{{ titulo }}</strong>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if quantidade > 2000 %}
|
|
<div>
|
|
<p class="alert_message"><b>Sua pesquisa retornou mais do que 2000 impressos.<br>
|
|
Por questões de performance, foram retornados apenas os primeiros 2000 resultados.</b></p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Tipo, Número e Data</th>
|
|
<th>Ementa</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for materia in materias %}
|
|
<tr>
|
|
<td id="tipo_numero_data">
|
|
<span class="text_pdf">{{ materia.tipo }} nº {{ materia.numero }}, de {{ materia.ano }}</span>
|
|
</td>
|
|
<td id="ementa">
|
|
<span class="text_pdf">{{ materia.ementa }}</span>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
<style type="text/css">
|
|
.text_pdf {
|
|
font-family: arial;
|
|
font-size: 70%;
|
|
}
|
|
#titulo {
|
|
font-size: xx-large;
|
|
text-align: center;
|
|
vertical-align:top;
|
|
}
|
|
#corpo {
|
|
margin-left:10px;
|
|
margin-right:-50px;
|
|
margin-top: -50px;
|
|
text-align: justify;
|
|
}
|
|
#tipo_numero_data {
|
|
width:200px;
|
|
vertical-align:top;
|
|
}
|
|
#ementa {
|
|
width:440px;
|
|
vertical-align:top;
|
|
}
|
|
</style>
|
|
</html>
|