Browse Source

Fix #1118

pull/1126/head
Eduardo Calil 8 years ago
parent
commit
4b94eb80f4
  1. 9
      sapl/templates/materia/materialegislativa_filter.html

9
sapl/templates/materia/materialegislativa_filter.html

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

Loading…
Cancel
Save