diff --git a/sapl/templates/materia/materialegislativa_filter.html b/sapl/templates/materia/materialegislativa_filter.html index 79db91d26..bbb4fdfd5 100644 --- a/sapl/templates/materia/materialegislativa_filter.html +++ b/sapl/templates/materia/materialegislativa_filter.html @@ -123,6 +123,16 @@ {{ a.materia_principal }}  Data Anexação: {{a.data_anexacao}} + {% if a.materia_principal.autoria_set.all %} + Autor(es): + {% for ab in a.materia_principal.autoria_set.all %} + {% if not forloop.first %} + , {{ab.autor}} + {% else %} +  {{ab.autor}} + {% endif %} + {% endfor %} + {% endif %}
{% endfor %} {% endif %} @@ -133,6 +143,16 @@ {{ anexada.materia_anexada }}  Data Anexação: {{anexada.data_anexacao}} + {% if anexada.materia_anexada.autoria_set.exists %} + Autor(es): + {% for a in anexada.materia_anexada.autoria_set.all %} + {% if not forloop.first %} + , {{a.autor}} + {% else %} +  {{a.autor}} + {% endif %} + {% endfor %} + {% endif %}
{% endfor %} {% endif %}