Browse Source

feat: adiciona link para correspondencias na pauta de sessao (#3683)

Co-authored-by: joao <joao@mezzoplanejamento.com.br>
pull/3685/head
joaohortsenado 1 year ago
committed by GitHub
parent
commit
e1fb455bf5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      sapl/templates/sessao/pauta_sessao_detail.html

10
sapl/templates/sessao/pauta_sessao_detail.html

@ -23,7 +23,11 @@
{% for c in correspondencias %}
<tr>
<td>
<strong>({{c.tipo}})</strong> <strong>{{c.epigrafe}}</strong><br>
<strong>({{c.tipo}})</strong>
<a href="{% url 'sapl.base:sapl_index' %}docadm/{{c.id}}" target="_blank">
<strong>{{c.epigrafe}}</strong>
</a>
<br>
<strong>Data: </strong>{{c.data}}{% if c.interessado %} - <strong>Interessado: </strong>{{c.interessado}}{% endif %}<br>
<strong>Assunto:</strong> {{c.assunto}}
</td>
@ -59,7 +63,9 @@
<tr>
<td style="width:20%;">
{{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}" target="_blank">
{{m.titulo}}
</a><br/>
<b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td>

Loading…
Cancel
Save