|
@ -35,22 +35,18 @@ |
|
|
<thead class="thead-default" > |
|
|
<thead class="thead-default" > |
|
|
<tr class="active"> |
|
|
<tr class="active"> |
|
|
<th>Matéria</th> |
|
|
<th>Matéria</th> |
|
|
<th>Ementa</th> |
|
|
<th>Local Atual</th> |
|
|
<th>Autor(es)</th> |
|
|
<th>Status</th> |
|
|
</tr> |
|
|
</tr> |
|
|
</thead> |
|
|
</thead> |
|
|
<tbody> |
|
|
<tbody> |
|
|
{% for materia in object_list %} |
|
|
{% for materia in object_list %} |
|
|
<tr> |
|
|
<tr> |
|
|
<td><a href="{% url 'sapl.materia:materialegislativa_detail' materia.pk %}"> |
|
|
<td><a href="{% url 'sapl.materia:materialegislativa_detail' materia.pk %}"> |
|
|
{{materia.tipo.descricao}} - {{materia.tipo.sigla}} {{materia.numero}}/{{materia.ano}} |
|
|
{{materia.tipo.descricao}} {{materia.numero}}/{{materia.ano}} |
|
|
</a></td> |
|
|
</a></td> |
|
|
<td>{{materia.ementa}}</td> |
|
|
<td>{{materia.tramitacao_set.last.unidade_tramitacao_local}}</td> |
|
|
<td> |
|
|
<td>{{materia.tramitacao_set.last.status}}</td> |
|
|
{% for autor in materia.autoria_set.all %} |
|
|
|
|
|
{{autor.autor}}<br /> |
|
|
|
|
|
{% endfor %} |
|
|
|
|
|
</td> |
|
|
|
|
|
</tr> |
|
|
</tr> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</tbody> |
|
|
</tbody> |
|
|