|
@ -661,7 +661,8 @@ class EditExpedienteOrdemDiaView(sessao_crud.CrudDetailView): |
|
|
return self.form_valid(form) |
|
|
return self.form_valid(form) |
|
|
else: |
|
|
else: |
|
|
context.update( |
|
|
context.update( |
|
|
{'error_message': _("Não foi possível salvar formulário!")}) |
|
|
{'error_message': _( |
|
|
|
|
|
"Não foi possível salvar formulário!")}) |
|
|
return self.form_invalid(form) |
|
|
return self.form_invalid(form) |
|
|
elif 'delete-ordemdia' in request.POST: |
|
|
elif 'delete-ordemdia' in request.POST: |
|
|
ordemdia.delete() |
|
|
ordemdia.delete() |
|
@ -934,9 +935,11 @@ class ResumoView(sessao_crud.CrudDetailView): |
|
|
abertura = self.object.data_inicio.strftime('%d/%m/%Y') |
|
|
abertura = self.object.data_inicio.strftime('%d/%m/%Y') |
|
|
encerramento = self.object.data_fim.strftime('%d/%m/%Y') |
|
|
encerramento = self.object.data_fim.strftime('%d/%m/%Y') |
|
|
|
|
|
|
|
|
context.update({'basica': [_('Tipo de Sessão: ') + str(self.object.tipo), |
|
|
context.update({'basica': [ |
|
|
_('Abertura: ') + abertura, |
|
|
_('Tipo de Sessão: %(tipo)s') % {'tipo': self.object.tipo}, |
|
|
_('Encerramento: ') + encerramento, |
|
|
_('Abertura: %(abertura)') % {'abertura': abertura}, |
|
|
|
|
|
_('Encerramento: %(encerramento)') % { |
|
|
|
|
|
'encerramento': encerramento}, |
|
|
]}) |
|
|
]}) |
|
|
# ===================================================================== |
|
|
# ===================================================================== |
|
|
# Conteúdo Multimídia |
|
|
# Conteúdo Multimídia |
|
@ -2142,9 +2145,11 @@ class PautaSessaoDetailView(sessao_crud.CrudDetailView): |
|
|
else: |
|
|
else: |
|
|
encerramento = "" |
|
|
encerramento = "" |
|
|
|
|
|
|
|
|
context.update({'basica': [_('Tipo de Sessão: ') + str(self.object.tipo), |
|
|
context.update({'basica': [ |
|
|
_('Abertura: ') + abertura, |
|
|
_('Tipo de Sessão: %(tipo)s') % {'tipo': self.object.tipo}, |
|
|
_('Encerramento: ') + encerramento, |
|
|
_('Abertura: %(abertura)') % {'abertura': abertura}, |
|
|
|
|
|
_('Encerramento: %(encerramento)') % { |
|
|
|
|
|
'encerramento': encerramento}, |
|
|
]}) |
|
|
]}) |
|
|
# ===================================================================== |
|
|
# ===================================================================== |
|
|
# Matérias Expediente |
|
|
# Matérias Expediente |
|
|