mirror of https://github.com/interlegis/sapl.git
Browse Source
* fix: corrige erro na impressao pdf da lista de tramitaçoes * Update sapl/relatorios/views.py --------- Co-authored-by: joao <joao@mezzoplanejamento.com.br> Co-authored-by: Edward <9326037+edwardoliveira@users.noreply.github.com>pull/3635/head
joaohortsenado
2 years ago
committed by
GitHub
2 changed files with 50 additions and 4 deletions
@ -0,0 +1,38 @@ |
|||
{% extends "relatorios/base_relatorio.html" %} |
|||
{% load i18n %} |
|||
{% load common_tags %} |
|||
{% load static %} |
|||
|
|||
{% block content %} |
|||
|
|||
|
|||
<h2>Histórico de Tramitações da Matéria: {{ numero }}/{{ ano }}</h2> |
|||
|
|||
Tipo de matéria: {{ tipo }}<br /> |
|||
Autor: {{ autor }}<br /> |
|||
|
|||
<table class="grayTable"> |
|||
{% for tramitacao in object%} |
|||
{% if forloop.first %} |
|||
<thead> |
|||
<tr> |
|||
<th>Data Tramitacação</th> |
|||
<th>Unidade Local</th> |
|||
<th>Unidade Destino</th> |
|||
<th>Status</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% endif %} |
|||
<tr> |
|||
<td >{{tramitacao.data_tramitacao}}</td> |
|||
<td >{{tramitacao.unidade_tramitacao_local}}</td> |
|||
<td >{{tramitacao.unidade_tramitacao_destino}}</td> |
|||
<td >{{tramitacao.status}}</td> |
|||
</tr> |
|||
{% if forloop.last %} |
|||
</tbody> |
|||
{% endif %} |
|||
{% endfor %} |
|||
</table> |
|||
{% endblock content %} |
Loading…
Reference in new issue