|
|
@ -37,30 +37,53 @@ |
|
|
|
</table> |
|
|
|
|
|
|
|
<table class="table table-bordered table-hover"> |
|
|
|
<col> |
|
|
|
<col> |
|
|
|
<colgroup span="4"></colgroup> |
|
|
|
<thead class="thead-default" > |
|
|
|
<tr class="active"> |
|
|
|
<th>Matéria</th> |
|
|
|
<th>Ementa</th> |
|
|
|
<th>Local Atual</th> |
|
|
|
<th>Status</th> |
|
|
|
<th>Autores</th> |
|
|
|
<tr> |
|
|
|
<th scope="col">Matéria</th> |
|
|
|
<th scope="col"> </th> |
|
|
|
<th colspan="3" scope="colgroup"> </th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
{% for materia_em_tramitacao in object_list %} |
|
|
|
<tbody> |
|
|
|
{% for materia_em_tramitacao in object_list %} |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<tr> |
|
|
|
<th rowspan="4" scope="rowgroup"> |
|
|
|
<a href="{% url 'sapl.materia:materialegislativa_detail' materia_em_tramitacao.materia.pk %}"> |
|
|
|
{{ materia_em_tramitacao.materia.tipo.descricao }} {{ materia_em_tramitacao.materia.numero }}/{{ materia_em_tramitacao.materia.ano }} |
|
|
|
{{ materia_em_tramitacao.materia.tipo.descricao }} {{ materia_em_tramitacao.materia.numero }}/{{ materia_em_tramitacao.materia.ano }} |
|
|
|
</a> |
|
|
|
</td> |
|
|
|
<td>{{ materia_em_tramitacao.materia.ementa }}</td> |
|
|
|
<td>{{ materia_em_tramitacao.materia.tramitacao_set.first.unidade_tramitacao_destino }}</td> |
|
|
|
<td>{{ materia_em_tramitacao.materia.tramitacao_set.first.status }}</td> |
|
|
|
<td>{% for autor in materia_em_tramitacao.materia.autores.all %} <p>{{autor}}</p>{% endfor %}</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</th> |
|
|
|
<th scope="row">Ementa</th> |
|
|
|
<td colspan="3">{{ materia_em_tramitacao.materia.ementa }}</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">Autores</th> |
|
|
|
<td colspan="3"> |
|
|
|
<p> |
|
|
|
{% for autor in materia_em_tramitacao.materia.autores.all %} |
|
|
|
{% if not forloop.last %} |
|
|
|
{{autor}}, |
|
|
|
{% else %} |
|
|
|
{{autor}} |
|
|
|
{% endif%} |
|
|
|
{% endfor %} |
|
|
|
</p> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">Local atual</th> |
|
|
|
<td>{{ materia_em_tramitacao.materia.tramitacao_set.first.unidade_tramitacao_destino }}</td> |
|
|
|
<th scope="col">Status</th> |
|
|
|
<td>{{ materia_em_tramitacao.materia.tramitacao_set.first.status }}</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th scope="row">Texto da Ação</th> |
|
|
|
<td colspan="3">{{ materia_em_tramitacao.materia.tramitacao_set.first.texto }}</td> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% endif %} |
|
|
|
{% include 'paginacao.html' %} |
|
|
|