From c1339e93a127cd44091c16995c5ce7e3c94598d8 Mon Sep 17 00:00:00 2001 From: joao Date: Fri, 24 Jun 2022 11:22:24 -0300 Subject: [PATCH] =?UTF-8?q?Exibi=C3=A7=C3=A3o=20de=20Autoria=20para=20Mat?= =?UTF-8?q?=C3=A9rias=20Anexadas=20e=20Anexadoras=20na=20listagem=20de=20P?= =?UTF-8?q?esquisa=20de=20Mat=C3=A9ria=20Legislativa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../materia/materialegislativa_filter.html | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) 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 %}