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.
28 lines
982 B
28 lines
982 B
{% extends "base.html" %}
|
|
{% load common_tags %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<h1>Lista de Protocolos que Excedem o Limite de Matérias Vinculadas</h1>
|
|
{% if not protocolos_com_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 materia, quantidade in protocolos_com_materias %}
|
|
<tr>
|
|
<td>{{ materia.numero_protocolo }}/{{ materia.ano }}</td>
|
|
<td>{{ quantidade }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html'%}
|
|
{% endblock base_content %}
|