mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
3 years ago
4 changed files with 120 additions and 152 deletions
@ -1,59 +1,59 @@ |
|||
{% extends "base_report.html" %} |
|||
{% load static from staticfiles %} |
|||
{% load i18n %} |
|||
{% extends 'pdf/base_report.html' %} |
|||
{% load static i18n %} |
|||
|
|||
{% block extra_head %} |
|||
<style> |
|||
@page { |
|||
size: A4 landscape; |
|||
margin: 1cm; |
|||
} |
|||
|
|||
* { font-size: 10px;} |
|||
|
|||
a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
dt { |
|||
font-weight: 700; |
|||
} |
|||
|
|||
dd { |
|||
margin-left: 2mm; |
|||
} |
|||
|
|||
table, th, td { |
|||
border: 1px solid #ddd; |
|||
} |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
} |
|||
|
|||
td, th { |
|||
padding: 2px; |
|||
vertical-align: top; |
|||
} |
|||
|
|||
th { |
|||
text-align: center !important; |
|||
vertical-align: bottom !important; |
|||
} |
|||
|
|||
.status-P { background-color: #ffffb0} |
|||
.status-A { background-color: #a6ebff} |
|||
.status-O { background-color: #c2ffc2} |
|||
.status-R { background-color: #ffdaa6} |
|||
.status-C { background-color: #d98f8d} |
|||
</style> |
|||
<title>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</title> |
|||
{% block extra_style %} |
|||
{{ block.super }} |
|||
a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
table { |
|||
table-layout: fixed; |
|||
} |
|||
table td, |
|||
table td * { |
|||
vertical-align: top; |
|||
} |
|||
span.numero-dia { |
|||
font-size: 0.5em; |
|||
} |
|||
.card { |
|||
background-color: #fff; |
|||
padding: 15px; |
|||
margin: 10px 0; |
|||
} |
|||
.card .card-content .card-title { |
|||
display: block; |
|||
line-height: 32px; |
|||
margin-bottom: 8px; |
|||
font-weight: 300; |
|||
} |
|||
.card-title { |
|||
font-size: 20px !important; |
|||
margin-bottom: -6px !important; |
|||
} |
|||
.data-evento { |
|||
font-size: 0.7em; |
|||
display: block; |
|||
} |
|||
.tipo-evento { |
|||
font-size: 0.7em; |
|||
color: var(--body-quiet-color); |
|||
display: block; |
|||
margin-bottom: 8px; |
|||
} |
|||
.cyan.lighten-4 { background-color: #b2ebf2 !important; } |
|||
.brown.lighten-4 { background-color: #d7ccc8 !important; } |
|||
.deep-orange.lighten-4 { background-color: #ffccbc !important; } |
|||
.cyan.lighten-4 { background-color: #b2ebf2 !important; } |
|||
.green.lighten-4 { background-color: #c8e6c9 !important; } |
|||
.lime.lighten-4 { background-color: #f0f4c3 !important; } |
|||
{% endblock %} |
|||
|
|||
{% block report %} |
|||
<h1>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</h1> |
|||
{% include "eventos/calendario_snippet.html" %} |
|||
{% endblock %} |
|||
</body> |
|||
</html> |
|||
{% block main_content %} |
|||
<h1> |
|||
{% blocktrans with month=mes_pesquisa|stringformat:"02d" year=ano_pesquisa|stringformat:"04d" %}Ref: {{ month }}/{{year}}{% endblocktrans %} |
|||
</h1> |
|||
{% include "eventos/snippets/calendario_cal.html" %} |
|||
{% include "eventos/snippets/calendario_lista.html" %} |
|||
{% endblock main_content %} |
Loading…
Reference in new issue