Browse Source

Fix #1707 (#1712)

pull/1663/head
Talitha Pumar 7 years ago
committed by Edward
parent
commit
3e160a996e
  1. 10
      sapl/materia/views.py
  2. 3
      sapl/templates/materia/proposicao_detail.html

10
sapl/materia/views.py

@ -815,14 +815,14 @@ class ProposicaoCrud(Crud):
obj.data_recebimento = 'Não recebida'\ obj.data_recebimento = 'Não recebida'\
if obj.data_envio else 'Não enviada' if obj.data_envio else 'Não enviada'
else: else:
obj.data_recebimento = formats.date_format( obj.data_recebimento = timezone.localtime(obj.data_recebimento)
obj.data_recebimento, "DATETIME_FORMAT") obj.data_recebimento = obj.data_recebimento = formats.date_format(obj.data_recebimento, "DATETIME_FORMAT")
if obj.data_envio is None: if obj.data_envio is None:
obj.data_envio = 'Em elaboração...' obj.data_envio = 'Em elaboração...'
else: 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] return [self._as_row(obj) for obj in object_list]

3
sapl/templates/materia/proposicao_detail.html

@ -2,6 +2,7 @@
{% load i18n common_tags %} {% load i18n common_tags %}
{% load tz %} {% load tz %}
{% block sub_actions %}{{block.super}} {% block sub_actions %}{{block.super}}
<div class="actions btn-group btn-group-sm {%block sub_actions_pull%}{% endblock%}" role="group"> <div class="actions btn-group btn-group-sm {%block sub_actions_pull%}{% endblock%}" role="group">
{% if object.texto_articulado.exists %} {% if object.texto_articulado.exists %}
<a class="btn btn-success" href="{% url 'sapl.materia:proposicao_ta' object.pk%}">{% trans "Texto Eletrônico" %}</a> <a class="btn btn-success" href="{% url 'sapl.materia:proposicao_ta' object.pk%}">{% trans "Texto Eletrônico" %}</a>
@ -62,7 +63,7 @@
<div class="col-sm-9"> <div class="col-sm-9">
<div class="alert alert-danger alert-dismissible fade in" role="alert"> <div class="alert alert-danger alert-dismissible fade in" role="alert">
<strong>{% trans "Proposição devolvida em:" %} {{ object.data_devolucao|localtime|date:"DATETIME_FORMAT"}}</strong> <strong>{% trans "Proposição devolvida em:" %} {{ object.data_devolucao}}</strong>
<div >{% trans "Justificativa:" %} {{object.justificativa_devolucao}}</div> <div >{% trans "Justificativa:" %} {{object.justificativa_devolucao}}</div>
</div> </div>
</div> </div>

Loading…
Cancel
Save