From f5e4d92fb232803ed320f7f9389c6794daaa114d Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Wed, 8 Mar 2017 09:01:36 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20mensagem=20para=20normas=20sem=20alt?= =?UTF-8?q?era=C3=A7=C3=B5es=20futuras.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/norma/normajuridica_filter.html | 37 ++++++++++--------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/sapl/templates/norma/normajuridica_filter.html b/sapl/templates/norma/normajuridica_filter.html index cf0d1017c..8350f19e7 100644 --- a/sapl/templates/norma/normajuridica_filter.html +++ b/sapl/templates/norma/normajuridica_filter.html @@ -49,24 +49,27 @@ {{n.data}} {{n.ementa|safe}} - {% for p in n.get_normas_relacionadas.0 %} -
- {{ p.tipo_vinculo.descricao_ativa }}  - - {{ p.norma_relacionada }} - -
- {% endfor %} - {% for r in n.get_normas_relacionadas.1 %} -
- {{ r.tipo_vinculo.descricao_passiva }}  - - {{ r.norma_principal }} - -
- {% endfor %} + {% if n.get_normas_relacionadas.0|length == 0 and n.get_normas_relacionadas.1|length == 0%} + Norma sem alterações posteriores. + {% else %} + {% for p in n.get_normas_relacionadas.0 %} +
+ {{ p.tipo_vinculo.descricao_ativa }}  + + {{ p.norma_relacionada }} + +
+ {% endfor %} + {% for r in n.get_normas_relacionadas.1 %} +
+ {{ r.tipo_vinculo.descricao_passiva }}  + + {{ r.norma_principal }} + +
+ {% endfor %} + {% endif %} - {% endfor %}