Browse Source

Adiciona mensagem para normas sem alterações futuras.

pull/919/head
Edward Ribeiro 8 years ago
parent
commit
f5e4d92fb2
  1. 5
      sapl/templates/norma/normajuridica_filter.html

5
sapl/templates/norma/normajuridica_filter.html

@ -49,6 +49,9 @@
<td>{{n.data}}</td> <td>{{n.data}}</td>
<td>{{n.ementa|safe}}</td> <td>{{n.ementa|safe}}</td>
<td> <td>
{% 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 %} {% for p in n.get_normas_relacionadas.0 %}
<div> <div>
<b>{{ p.tipo_vinculo.descricao_ativa }}</b>&nbsp; <b>{{ p.tipo_vinculo.descricao_ativa }}</b>&nbsp;
@ -65,8 +68,8 @@
</a> </a>
</div> </div>
{% endfor %} {% endfor %}
{% endif %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

Loading…
Cancel
Save