mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
3 years ago
9 changed files with 106 additions and 94 deletions
@ -0,0 +1,23 @@ |
|||||
|
# Generated by Django 4.0.4 on 2022-05-05 13:17 |
||||
|
|
||||
|
import django.core.validators |
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('convenios', '0021_projeto_texto_minuta_projeto_texto_oficio'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.RemoveField( |
||||
|
model_name='projeto', |
||||
|
name='texto_minuta', |
||||
|
), |
||||
|
migrations.AddField( |
||||
|
model_name='projeto', |
||||
|
name='modelo_minuta', |
||||
|
field=models.FileField(blank=True, help_text='Use as seguintes marcações:<ul><li>{{ casa.nome }} para o nome da Casa Legislativa / órgão</li><li>{{ casa.municipio.uf.sigla }} para a sigla da UF da Casa legislativa</li><li>{{ presidente.nome }} para o nome do presidente</li><li>{{ contato.nome }} para o nome do contato Interlegis</li></ul>', upload_to='convenios/minutas/', validators=[django.core.validators.FileExtensionValidator], verbose_name='Modelo de minuta'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,19 @@ |
|||||
|
# Generated by Django 4.0.4 on 2022-05-05 14:35 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import django.db.models.deletion |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('eventos', '0019_alter_evento_status'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='anexo', |
||||
|
name='convite', |
||||
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='eventos.convite'), |
||||
|
), |
||||
|
] |
@ -1,77 +0,0 @@ |
|||||
{% extends 'pdf/base_report.html' %} |
|
||||
{% load i18n static %} |
|
||||
|
|
||||
{% block page_margin %}4cm 2cm{% endblock page_margin %} |
|
||||
|
|
||||
{% block page-header-settings %} |
|
||||
@top-center { content: element(header);} |
|
||||
{% endblock %} |
|
||||
|
|
||||
{% block page-footer-settings %} |
|
||||
@bottom-center { content: element(footer); } |
|
||||
{% endblock %} |
|
||||
|
|
||||
|
|
||||
{% block extra_style %} |
|
||||
h1 {font-size: 1.2em;} |
|
||||
h2 {font-size: 1.1em;} |
|
||||
h3,h4,h5,h6 {font-size: 1em;} |
|
||||
|
|
||||
header { |
|
||||
font-size: 1em; |
|
||||
text-align: center; |
|
||||
} |
|
||||
|
|
||||
header p { |
|
||||
margin: 0 0 5px 0; |
|
||||
} |
|
||||
|
|
||||
.strong { |
|
||||
font-weight: bold; |
|
||||
} |
|
||||
|
|
||||
.header-title { |
|
||||
font-weight: bold; |
|
||||
font-size: 1.2em; |
|
||||
} |
|
||||
|
|
||||
.header-subtitle { |
|
||||
font-weight: bold; |
|
||||
font-size: 1em; |
|
||||
} |
|
||||
|
|
||||
.content { |
|
||||
font-size: 1.2em; |
|
||||
line-height: 1.4em; |
|
||||
padding-bottom: 5px; |
|
||||
} |
|
||||
|
|
||||
footer { |
|
||||
width: 100%; |
|
||||
text-align: center; |
|
||||
} |
|
||||
|
|
||||
.barra { |
|
||||
height: 15px; |
|
||||
} |
|
||||
{% endblock %} |
|
||||
|
|
||||
{% block header %} |
|
||||
<img src="{% static 'img/logo-senado.png' %}"> |
|
||||
<p class="header-title">SENADO FEDERAL</p> |
|
||||
<p class="header-subtitle">Instituto Legislativo Brasileiro - ILB</p> |
|
||||
<p class="header-subtitle">Programa Interlegis</p> |
|
||||
{% endblock %} |
|
||||
|
|
||||
{% block main_content %} |
|
||||
<div class="content"> |
|
||||
{% block text_body %}{% endblock %} |
|
||||
</div> |
|
||||
{% endblock %} |
|
||||
|
|
||||
{% block footer %} |
|
||||
<img class="barra" src="{% static 'img/brasil-barra.jpg' %}"/> |
|
||||
<p>Instituto Legislativo Brasileiro - ILB - Av. N2 - Bloco 12 - CEP 70165-900 – Brasília DF</p> |
|
||||
<p>Telefone: +55 (61) 3303-2599 – interlegis@senado.leg.br – www.interlegis.leg.br</p> |
|
||||
<p class="strong">MINUTA-PADRÃO aprovada pela Diretoria-Geral do Senado Federal em 01/setembro/2021, conforme processo 00200.006818/2021-12.</p> |
|
||||
{% endblock %} |
|
Loading…
Reference in new issue