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 %}