Browse Source

Fix #2216 link para texto integral da norma (#2227)

pull/2234/head
Talitha Pumar 6 years ago
committed by Edward
parent
commit
a9052a1cf0
  1. 6
      sapl/templates/norma/normajuridica_filter.html

6
sapl/templates/norma/normajuridica_filter.html

@ -51,7 +51,11 @@
{% for n in page_obj %}
<tr>
<td><a href="{% url 'sapl.norma:normajuridica_detail' n.id %}">{{n.tipo}}</a></td>
<td>{{n.numero}}</td>
{% if n.texto_integral %}
<td><a href="{{n.texto_integral.url}}">{{n.numero}}</a></td>
{% else %}
<td>{{n.numero}}</td>
{% endif %}
<td>{{n.ano}}</td>
<td>{{n.data}}</td>
<td>{{n.ementa|safe}}</td>

Loading…
Cancel
Save