diff --git a/sapl/templates/materia/materialegislativa_filter.html b/sapl/templates/materia/materialegislativa_filter.html
index d9e4e2ee3..8fb454875 100644
--- a/sapl/templates/materia/materialegislativa_filter.html
+++ b/sapl/templates/materia/materialegislativa_filter.html
@@ -120,6 +120,18 @@
{{ a.materia_principal }}
Data Anexação: {{a.data_anexacao}}
+ {% if a.materia_principal.autoria_set.all %}
+ Autor:
+
+ {% for ab in a.materia_principal.autoria_set.all %}
+ {% if not forloop.first %}
+ , {{ab.autor}}
+ {% else %}
+ {{ab.autor}}
+ {% endif %}
+ {% endfor %}
+
+ {% endif %}
{% endfor %}
{% endif %}
@@ -130,6 +142,18 @@
{{ anexada.materia_anexada }}
Data Anexação: {{anexada.data_anexacao}}
+ {% if anexada.materia_anexada.autoria_set.all %}
+ Autor:
+
+ {% for a in anexada.materia_anexada.autoria_set.all %}
+ {% if not forloop.first %}
+ , {{a.autor}}
+ {% else %}
+ {{a.autor}}
+ {% endif %}
+ {% endfor %}
+
+ {% endif %}
{% endfor %}
{% endif %}