mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
6 years ago
3 changed files with 142 additions and 130 deletions
@ -0,0 +1,132 @@ |
|||
{% load smart_if %} |
|||
{% load static from staticfiles %} |
|||
{% load i18n %} |
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
|||
<html> |
|||
<head> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<title>Casa Legislativa</title> |
|||
<style type="text/css"> |
|||
table { |
|||
padding: 3px; |
|||
line-height: 1em; |
|||
-fs-table-paginate: paginate; |
|||
} |
|||
thead { |
|||
display: table-header-group; |
|||
} |
|||
th { |
|||
font-weight: bold; |
|||
text-align: left; |
|||
} |
|||
|
|||
th, td { |
|||
border-bottom: 1px solid #ddd; |
|||
} |
|||
|
|||
td.logo { |
|||
text-align: center; |
|||
} |
|||
|
|||
td.header_text p { |
|||
margin: 0px; |
|||
font-size: 1.4em; |
|||
} |
|||
|
|||
td.header_text { |
|||
width: 550px; |
|||
} |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
text-align: center; |
|||
} |
|||
h2 { |
|||
font-size: 1.7em; |
|||
} |
|||
h3 { |
|||
margin-top: 10px; |
|||
margin-bottom: 0px; |
|||
} |
|||
body { |
|||
font-family: "Helvetica, Arial, sans-serif"; |
|||
font-size: 1.3em; |
|||
line-height: 1em; |
|||
} |
|||
|
|||
#footer { |
|||
text-align: center; |
|||
} |
|||
|
|||
@page { |
|||
size: a4 landscape; |
|||
margin: 3.5cm 2cm 2cm 2cm; |
|||
font-family: "Helvetica, Arial, sans-serif"; |
|||
font-size: 2em; |
|||
@frame header { |
|||
-pdf-frame-content: header; |
|||
top: 1cm; |
|||
} |
|||
@frame footer { |
|||
-pdf-frame-content: footer; |
|||
bottom: 0cm; |
|||
margin-left: 2cm; |
|||
margin-right: 2cm; |
|||
height: 1cm; |
|||
} |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<div id="header"> |
|||
<table> |
|||
<tr> |
|||
<td class="logo"><img src="{% static 'img/logo-senado.jpg' %}"/></td> |
|||
<td class="header_text"> |
|||
<p><strong>{% trans 'SENADO FEDERAL' %}</strong></p> |
|||
<p><strong>{% trans 'ILB - Interlegis' %}</strong></p> |
|||
<p>{{ title }}</p> |
|||
</td> |
|||
<td class="logo"><img src="{% static 'img/logo-interlegis.jpg' %}"/></td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
|
|||
<table repeat="1"> |
|||
<thead> |
|||
<tr> |
|||
<th style="width: 22.5%;">{% trans 'Casa' %}</th> |
|||
<th style="width: 12.5%;">{% trans 'Presidente' %}</th> |
|||
<th style="width: 5%;">{% trans 'Tipo' %}</th> |
|||
<th style="width: 18%;">{% trans 'Endereço' %}</th> |
|||
<th style="width: 10%;">{% trans 'Bairro' %}</th> |
|||
<th style="width: 7%;">{% trans 'CEP' %}</th> |
|||
<th style="width: 12.5%;">{% trans 'Telefone' %}</th> |
|||
<th style="width: 12.5%;">{% trans 'E-mail' %}</th> |
|||
</tr> |
|||
</thead> |
|||
|
|||
{% for casa in casas %} |
|||
{% ifchanged casa.municipio.uf %} |
|||
<tr><td colspan="8"><h3>{{ casa.municipio.uf.nome }}</h3></td></tr> |
|||
{% endifchanged %} |
|||
<tr> |
|||
<td>{{ casa.nome }}</td> |
|||
<td>{{ casa.presidente }}</td> |
|||
<td>{{ casa.tipo.sigla }}</td> |
|||
<td>{{ casa.logradouro }}</td> |
|||
<td>{{ casa.bairro }}</td> |
|||
<td>{{ casa.cep }}</td> |
|||
<td>{{ casa.telefone }}</td> |
|||
<td>{{ casa.email }}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
|
|||
<div id="footer"> |
|||
{%block page_foot%} |
|||
{% trans 'Página' %} <pdf:pagenumber> |
|||
{%endblock%} |
|||
</div> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue