Sistema de Apoio ao Processo Legislativo
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.
|
|
|
{% extends "protocoloadm/protocoloadm_detail.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block detail_content %}
|
|
|
|
{% if protocolos %}
|
|
|
|
<!-- Total: {{ protocolos|length }} -->
|
|
|
|
<table>
|
|
|
|
<tr><td>Número de Protocolo</td>
|
|
|
|
<td>Assunto</td>
|
|
|
|
<td>Tipo de Documento</td>
|
|
|
|
<td>Ano</td>
|
|
|
|
<td>Data</td>
|
|
|
|
</tr>
|
|
|
|
{% for p in protocolos %}
|
|
|
|
<tr><td>{{ p.numero }}</td>
|
|
|
|
<td>{{ p.ano }}</td>
|
|
|
|
<td>{{ p.assunto_ementa }}</td>
|
|
|
|
<td>{{ p.tipo_documento }}</td>
|
|
|
|
<td>{{ p.data|date:"d/m/Y" }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% include "paginacao.html" %}
|
|
|
|
{% else %}
|
|
|
|
<h2>Nenhum Registro recuperado</h2>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock detail_content %}
|