Browse Source

Adiciona aviso quando expediente não tem conteúdo (#2772)

Fix #2771
pull/2811/head
Vinícius Cantuária 6 years ago
committed by Cesar Carvalho
parent
commit
8e0d0fd986
  1. 8
      sapl/templates/sessao/blocos_ata/expedientes.html

8
sapl/templates/sessao/blocos_ata/expedientes.html

@ -3,8 +3,12 @@
{% if expedientes %} {% if expedientes %}
<strong>Expedientes: </strong> <strong>Expedientes: </strong>
{% for e in expedientes %} {% for e in expedientes %}
<b>{{e.tipo}}</b>: <b>{{e.tipo}}</b>:
{{e.conteudo|striptags|safe}} {% if e.conteudo %}
{{e.conteudo|striptags|safe}}
{% else %}
Sem registro
{% endif %}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
</p> </p>

Loading…
Cancel
Save