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.
32 lines
1.5 KiB
32 lines
1.5 KiB
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load tz %}
|
|
{% load common_tags %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<h1>Lista de Protocolos que Excedem o Limite de Matérias Vinculadas</h1>
|
|
{% if not protocolos_materias %}
|
|
<p>{{ NO_ENTRIES_MSG }}</p>
|
|
{% else %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Protocolo</th>
|
|
<th>Quantidade de Matérias Vinculas</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for protocolo, quantidade in protocolos_materias %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'sapl.materia:pesquisar_materia' %}?tipo=&ementa=&numero=&numeracao__numero_materia=&numero_protocolo={{protocolo.numero}}&ano={{protocolo.ano}}&o=&tipo_listagem=1&data_apresentacao_0=&data_apresentacao_1=&data_publicacao_0=&data_publicacao_1=&autoria__autor=&autoria__primeiro_autor=1&autoria__autor__tipo=&autoria__autor__parlamentar_set__filiacao__partido=&relatoria__parlamentar_id=&local_origem_externa=&tramitacao__unidade_tramitacao_destino=&tramitacao__status=&em_tramitacao=&materiaassunto__assunto=&indexacao=">{{ protocolo }}</a>
|
|
</td>
|
|
<td>{{ quantidade }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html'%}
|
|
{% endblock base_content %}
|