diff --git a/sapl/templates/comissoes/reuniao_detail.html b/sapl/templates/comissoes/reuniao_detail.html
index 689c4d709..a5489a1e8 100644
--- a/sapl/templates/comissoes/reuniao_detail.html
+++ b/sapl/templates/comissoes/reuniao_detail.html
@@ -4,9 +4,35 @@
{% block detail_content %}
{{ block.super }}
Pauta
+ {% if mats %}
+ Total de Registros: {{num_mats}}
+
+
+
+ | Matéria |
+
+
+
+ {% for mat in mats %}
+
+ |
+ {{mat}}
+ |
+
+ {% endfor %}
+
+
+
+ {% else %}
+ {% trans 'Adicionar Matéria' %}
+ {% endif %}
+
Documentos Acessórios
{% if docs %}
- Total de registros: {{n_docs}}
+ Total de registros: {{num_docs}}
@@ -23,7 +49,9 @@
{% endfor %}
+ {% trans 'Adicionar Documento' %}
+ {% else %}
+ {% trans 'Adicionar Documento' %}
{% endif %}
- {% trans 'Adicionar Documento Acessório' %}
-{% endblock detail_content %}
\ No newline at end of file
+{% endblock detail_content %}