From 2a046426f2767fbc5e6e333d60adf494f9d0ca4e Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Fri, 1 Sep 2017 08:32:58 -0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20somente=20imprime=20travess=C3=A2o?= =?UTF-8?q?=20se=20tiver=20data=20fim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/sessao/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/sessao/views.py b/sapl/sessao/views.py index aea18ea4c..c4224b8c6 100644 --- a/sapl/sessao/views.py +++ b/sapl/sessao/views.py @@ -1098,13 +1098,13 @@ class ResumoView(DetailView): abertura = data_inicio.strftime('%d/%m/%Y') if data_inicio else '' data_fim = self.object.data_fim - encerramento = data_fim.strftime('%d/%m/%Y') if data_fim else '' + encerramento = data_fim.strftime('%d/%m/%Y') + ' - ' if data_fim else '' context.update({'basica': [ _('Tipo de Sessão: %(tipo)s') % {'tipo': self.object.tipo}, _('Abertura: %(abertura)s - %(hora_inicio)s') % { 'abertura': abertura, 'hora_inicio': self.object.hora_inicio}, - _('Encerramento: %(encerramento)s - %(hora_fim)s') % { + _('Encerramento: %(encerramento)s%(hora_fim)s') % { 'encerramento': encerramento, 'hora_fim': self.object.hora_fim} ]}) # =====================================================================