From eb31e3e43139abdd0f0659e05779a12ff346a755 Mon Sep 17 00:00:00 2001 From: Eduardo Edson Batista Cordeiro Alves Date: Thu, 25 Aug 2016 13:37:31 -0300 Subject: [PATCH] =?UTF-8?q?Some=20bot=C3=B5es=20de=20edi=C3=A7=C3=A3o/excl?= =?UTF-8?q?us=C3=A3o=20caso=20proposi=C3=A7=C3=A3o=20tenha=20sido=20recebi?= =?UTF-8?q?da?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/templates/materia/proposicao_detail.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sapl/templates/materia/proposicao_detail.html b/sapl/templates/materia/proposicao_detail.html index 65f7c370b..9a2057609 100644 --- a/sapl/templates/materia/proposicao_detail.html +++ b/sapl/templates/materia/proposicao_detail.html @@ -5,20 +5,20 @@ {% block actions %}
{% if proposicao.data_envio %} - {% if perms|get_change_perm:view %} + {% if perms|get_change_perm:view and not object.data_recebimento %} {% trans 'Editar Proposição' %} {% endif %} - {% if perms|get_delete_perm:view %} + {% if perms|get_delete_perm:view and not object.data_recebimento %} {% trans 'Retornar Proposição Enviada' %} {% endif %} {% else %} - {% if perms|get_change_perm:view %} + {% if perms|get_change_perm:view and not object.data_recebimento %} {% trans 'Enviar/Editar Proposição' %} {% endif %} - {% if perms|get_delete_perm:view %} + {% if perms|get_delete_perm:view and not object.data_recebimento %} {% trans 'Excluir Proposição' %} {% endif %} {% endif %}