mirror of https://github.com/interlegis/sapl.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.
24 lines
666 B
24 lines
666 B
import logging
|
|
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from sapl.base.views import get_casalegislativa
|
|
from sapl.utils import mail_service_configured as mail_service_configured_utils
|
|
|
|
|
|
def parliament_info(request):
|
|
casa = get_casalegislativa()
|
|
if casa:
|
|
return casa.__dict__
|
|
else:
|
|
return {}
|
|
|
|
|
|
def mail_service_configured(request):
|
|
|
|
if not mail_service_configured_utils(request):
|
|
logger = logging.getLogger(__name__)
|
|
logger.warning(_('Servidor de email não configurado.'))
|
|
return {'mail_service_configured': False}
|
|
return {'mail_service_configured': True}
|
|
|