Browse Source
Merge branch '3.1.x' into ata_sessao
pull/2684/head
Edward
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
7 additions and
7 deletions
-
docker-compose.yml
-
sapl/relatorios/views.py
-
sapl/settings.py
-
sapl/templates/base.html
-
setup.py
|
|
|
@ -11,7 +11,7 @@ sapldb: |
|
|
|
ports: |
|
|
|
- "5432:5432" |
|
|
|
sapl: |
|
|
|
image: interlegis/sapl:3.1.151 |
|
|
|
image: interlegis/sapl:3.1.152 |
|
|
|
restart: always |
|
|
|
environment: |
|
|
|
ADMIN_PASSWORD: interlegis |
|
|
|
|
|
|
|
@ -32,7 +32,7 @@ from sapl.sessao.views import (get_identificação_basica, get_mesa_diretora, |
|
|
|
get_materias_expediente, get_oradores_expediente, |
|
|
|
get_presenca_ordem_do_dia, get_materias_ordem_do_dia, |
|
|
|
get_oradores_ordemdia, |
|
|
|
get_oradores_explicações_pessoais, get_ocorrencias_da_sessão) |
|
|
|
get_oradores_explicações_pessoais, get_ocorrencias_da_sessão, get_assinaturas) |
|
|
|
|
|
|
|
from .templates import (pdf_capa_processo_gerar, |
|
|
|
pdf_documento_administrativo_gerar, pdf_espelho_gerar, |
|
|
|
|
|
|
|
@ -41,7 +41,7 @@ ALLOWED_HOSTS = ['*'] |
|
|
|
LOGIN_REDIRECT_URL = '/' |
|
|
|
LOGIN_URL = '/login/?next=' |
|
|
|
|
|
|
|
SAPL_VERSION = '3.1.151' |
|
|
|
SAPL_VERSION = '3.1.152' |
|
|
|
|
|
|
|
if DEBUG: |
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' |
|
|
|
|
|
|
|
@ -179,7 +179,7 @@ |
|
|
|
<small> |
|
|
|
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto. |
|
|
|
</small> |
|
|
|
<span>Release: 3.1.151</span> |
|
|
|
<span>Release: 3.1.152</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="col-md-4"> |
|
|
|
|
|
|
|
@ -43,7 +43,7 @@ install_requires = [ |
|
|
|
] |
|
|
|
setup( |
|
|
|
name='interlegis-sapl', |
|
|
|
version='3.1.151', |
|
|
|
version='3.1.152', |
|
|
|
packages=find_packages(), |
|
|
|
include_package_data=True, |
|
|
|
license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007', |
|
|
|
|