Browse Source

Mostra todos os autores no resultado da pesquisa (#1288)

* Mostra todos os autores no resultado da pesquisa

* Update materialegislativa_filter.html

Conserta identação

* Update materialegislativa_filter.html

Fixes #1282
pull/1279/merge
Rogério Frá 8 years ago
committed by Edward
parent
commit
4fcd06bdc3
  1. 10
      sapl/templates/materia/materialegislativa_filter.html

10
sapl/templates/materia/materialegislativa_filter.html

@ -60,10 +60,12 @@
{% endif %}
{% if m.autoria_set.all %}
<strong>Autor:</strong>
{% for a in m.autoria_set.all %}
{% if a.primeiro_autor %}
&nbsp;{{a.autor.nome}}
<strong>Autor:</strong>
{% for a in m.autoria_set.all %}
{% if not forloop.first %}
</br> {{a.autor}}
{% else %}
&nbsp;{{a.autor}}
{% endif %}
{% endfor %}
</br>

Loading…
Cancel
Save