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. 5
      sapl/templates/materia/proposicao_detail.html

10
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]

5
sapl/templates/materia/proposicao_detail.html

@ -2,6 +2,7 @@
{% load i18n common_tags %}
{% load tz %}
{% block sub_actions %}{{block.super}}
<div class="actions btn-group btn-group-sm {%block sub_actions_pull%}{% endblock%}" role="group">
{% if object.texto_articulado.exists %}
<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="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>
</div>
@ -72,7 +73,7 @@
{% if object.data_envio %}
<div class="col-sm-3">
<div id="div_id_data_envio" class="form-group">
<p class="control-label">{%field_verbose_name object 'data_envio'%}</p>
<p class="control-label">{%field_verbose_name object 'data_envio' %}</p>
<div class="controls">
<div class="form-control-static">{{object.data_envio}}</div>
</div>

Loading…
Cancel
Save