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" %} |
{% extends 'pdf/base_report.html' %} |
||||
{% load static from staticfiles %} |
{% load static i18n %} |
||||
{% load i18n %} |
|
||||
|
|
||||
{% block extra_head %} |
|
||||
<style> |
|
||||
@page { |
|
||||
size: A4 landscape; |
|
||||
margin: 1cm; |
|
||||
} |
|
||||
|
|
||||
* { font-size: 10px;} |
|
||||
|
|
||||
|
{% block extra_style %} |
||||
|
{{ block.super }} |
||||
a { |
a { |
||||
color: black; |
color: black; |
||||
text-decoration: none; |
text-decoration: none; |
||||
} |
} |
||||
|
|
||||
dt { |
|
||||
font-weight: 700; |
|
||||
} |
|
||||
|
|
||||
dd { |
|
||||
margin-left: 2mm; |
|
||||
} |
|
||||
|
|
||||
table, th, td { |
|
||||
border: 1px solid #ddd; |
|
||||
} |
|
||||
|
|
||||
table { |
table { |
||||
border-collapse: collapse; |
table-layout: fixed; |
||||
} |
} |
||||
|
table td, |
||||
td, th { |
table td * { |
||||
padding: 2px; |
|
||||
vertical-align: top; |
vertical-align: top; |
||||
} |
} |
||||
|
span.numero-dia { |
||||
th { |
font-size: 0.5em; |
||||
text-align: center !important; |
} |
||||
vertical-align: bottom !important; |
.card { |
||||
} |
background-color: #fff; |
||||
|
padding: 15px; |
||||
.status-P { background-color: #ffffb0} |
margin: 10px 0; |
||||
.status-A { background-color: #a6ebff} |
} |
||||
.status-O { background-color: #c2ffc2} |
.card .card-content .card-title { |
||||
.status-R { background-color: #ffdaa6} |
display: block; |
||||
.status-C { background-color: #d98f8d} |
line-height: 32px; |
||||
</style> |
margin-bottom: 8px; |
||||
<title>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</title> |
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 %} |
{% endblock %} |
||||
|
|
||||
{% block report %} |
{% block main_content %} |
||||
<h1>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</h1> |
<h1> |
||||
{% include "eventos/calendario_snippet.html" %} |
{% blocktrans with month=mes_pesquisa|stringformat:"02d" year=ano_pesquisa|stringformat:"04d" %}Ref: {{ month }}/{{year}}{% endblocktrans %} |
||||
{% endblock %} |
</h1> |
||||
</body> |
{% include "eventos/snippets/calendario_cal.html" %} |
||||
</html> |
{% include "eventos/snippets/calendario_lista.html" %} |
||||
|
{% endblock main_content %} |
Loading…
Reference in new issue