From 5e0f5577b4a436c0507b58f67168677a238cb6a6 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 7 Feb 2017 16:20:28 -0200 Subject: [PATCH] Coloca ementa logo abaixo de numero/ano e adiciona contador de documentos acessorios para listagem de materia legislativa --- sapl/templates/materia/materialegislativa_filter.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sapl/templates/materia/materialegislativa_filter.html b/sapl/templates/materia/materialegislativa_filter.html index 50f369852..289a9391d 100644 --- a/sapl/templates/materia/materialegislativa_filter.html +++ b/sapl/templates/materia/materialegislativa_filter.html @@ -36,6 +36,10 @@ {{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}
+ Ementa: {{ m.ementa|safe }} + {% if m.texto_original %}

Texto Original{% endif %} + {% if m.texto_articulado.exists %}

Texto Articulado{% endif %} +
Autores: {% for a in m.autoria_set.all %} {% if not forloop.first %} @@ -81,10 +85,9 @@
{% endfor %} {% endif %} - Ementa: {{ m.ementa|safe }} - {% if m.texto_original %}

Texto Original{% endif %} - {% if m.texto_articulado.exists %}

Texto Articulado{% endif %} -
+ {% if m.documentoacessorio_set.all.exists %} + Documentos Acessórios: {{ m.documentoacessorio_set.all.count }} + {% endif %}

{% endfor %}