mirror of https://github.com/interlegis/sigi.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.
90 lines
1.6 KiB
90 lines
1.6 KiB
{% extends 'pdf/base.html' %}
|
|
{% load static i18n %}
|
|
|
|
{% block title %}{{ title }}{% endblock title %}
|
|
{% block extra_style %}
|
|
h1, h2, h3, h4, h5, h6 {
|
|
margin: 0;
|
|
}
|
|
h1 {font-size: 1.6em;}
|
|
h2 {font-size: 1.5em;}
|
|
h3 {font-size: 1.4em;}
|
|
h4 {font-size: 1.3em;}
|
|
h5 {font-size: 1.2em;}
|
|
h6 {font-size: 1.1em;}
|
|
header {
|
|
font-size: 1.4em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
}
|
|
header p {
|
|
margin: 5px;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
footer img {
|
|
width: 300px;
|
|
}
|
|
|
|
footer p {
|
|
margin-bottom: 3px;
|
|
}
|
|
.report_name {
|
|
font-size: 1.6em;
|
|
}
|
|
|
|
table {
|
|
border: 2px white;
|
|
width: 100%;
|
|
}
|
|
th,td {
|
|
padding: 4px;
|
|
}
|
|
th {
|
|
background-color: #007433;
|
|
color: white;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: #d2d2d2;
|
|
}
|
|
.title_row {
|
|
background-color: #b2b2b2;
|
|
}
|
|
.left-align {
|
|
text-align: left;
|
|
}
|
|
.center-align {
|
|
text-align: center;
|
|
}
|
|
.right-align {
|
|
text-align: right;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
{% endblock extra_style %}
|
|
|
|
{% block body_content %}
|
|
<header>{% block header %}
|
|
<p>{% trans 'SENADO FEDERAL' %}</p>
|
|
<p>{% trans 'Instituto Legislativo Brasileiro - ILB' %}</p>
|
|
<p>{% trans "INTERLEGIS" %}</p>
|
|
<p class="report_name">{% block report_name %}{{ title|upper }}{% endblock report_name %}</p>{% endblock header %}
|
|
</header>
|
|
|
|
{% spaceless %}
|
|
<footer>
|
|
{% block footer %}
|
|
<p>{% trans 'Emitido em ' %}{% now "DATETIME_FORMAT" %}</p>
|
|
<img src="{% static 'img/logos_rodape.png' %}" />
|
|
{% endblock footer %}
|
|
</footer>
|
|
{% endspaceless %}
|
|
|
|
{% block main_content %}{% endblock main_content %}
|
|
{% endblock body_content %}
|