mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.7 KiB
42 lines
1.7 KiB
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load tz %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<legend>Proposições Incorporadas</legend>
|
|
{% if not object_list %}
|
|
<p>{{ NO_ENTRIES_MSG }}</p>
|
|
{% else %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Data do Recebimento</th>
|
|
<th>Tipo</th>
|
|
<th>Descrição</th>
|
|
<th>Autor</th>
|
|
<th>Vínculo</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for prop in object_list %}
|
|
<tr>
|
|
<td><a href="{% url 'sapl.materia:proposicao_detail' prop.pk %}">{{ prop.data_recebimento|localtime|date:"d/m/Y H:i:s" }}</a></td>
|
|
<td>{{ prop.tipo.descricao }}</td>
|
|
<td>{{ prop.descricao }}</td>
|
|
<td>{{ prop.autor }}</td>
|
|
<td>
|
|
{{ MateriaLegislativa.Meta}}
|
|
{% if prop.content_type.model == 'materialegislativa' %}
|
|
<a href="{% url 'sapl.materia:materialegislativa_detail' prop.object_id %}">{{ prop.conteudo_gerado_related.tipo.sigla }} {{ prop.conteudo_gerado_related.numero }}/{{ prop.conteudo_gerado_related.ano }}</a>
|
|
{% elif prop.content_type.model == 'documentoacessorio' %}
|
|
<a href="{% url 'sapl.materia:documentoacessorio_detail' prop.object_id %}">{{ prop.conteudo_gerado_related.materia.tipo.sigla }} {{ prop.conteudo_gerado_related.materia.numero }}/{{ prop.conteudo_gerado_related.materia.ano }}</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html'%}
|
|
{% endblock %}
|
|
|