From 3e160a996e2afa222565a784364d1e9005894586 Mon Sep 17 00:00:00 2001 From: Talitha Pumar Date: Wed, 21 Feb 2018 14:27:42 -0300 Subject: [PATCH] Fix #1707 (#1712) --- sapl/materia/views.py | 10 +++++----- sapl/templates/materia/proposicao_detail.html | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sapl/materia/views.py b/sapl/materia/views.py index 6e08f00f0..b08c62450 100644 --- a/sapl/materia/views.py +++ b/sapl/materia/views.py @@ -815,14 +815,14 @@ class ProposicaoCrud(Crud): obj.data_recebimento = 'Não recebida'\ if obj.data_envio else 'Não enviada' else: - obj.data_recebimento = formats.date_format( - obj.data_recebimento, "DATETIME_FORMAT") - + obj.data_recebimento = timezone.localtime(obj.data_recebimento) + obj.data_recebimento = obj.data_recebimento = formats.date_format(obj.data_recebimento, "DATETIME_FORMAT") if obj.data_envio is None: obj.data_envio = 'Em elaboração...' else: - obj.data_envio = formats.date_format( - obj.data_envio, "DATETIME_FORMAT") + + obj.data_envio = timezone.localtime(obj.data_envio) + obj.data_envio = formats.date_format(obj.data_envio, "DATETIME_FORMAT") return [self._as_row(obj) for obj in object_list] diff --git a/sapl/templates/materia/proposicao_detail.html b/sapl/templates/materia/proposicao_detail.html index 6539a7a0a..039d55ad7 100644 --- a/sapl/templates/materia/proposicao_detail.html +++ b/sapl/templates/materia/proposicao_detail.html @@ -2,6 +2,7 @@ {% load i18n common_tags %} {% load tz %} {% block sub_actions %}{{block.super}} +
{% if object.texto_articulado.exists %} {% trans "Texto Eletrônico" %} @@ -62,7 +63,7 @@
@@ -72,7 +73,7 @@ {% if object.data_envio %}
-

{%field_verbose_name object 'data_envio'%}

+

{%field_verbose_name object 'data_envio' %}

{{object.data_envio}}