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
988 B
32 lines
988 B
{% extends "base.html" %}
|
|
{% load common_tags %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<h1>Lista de Autores Duplicados</h1>
|
|
<br/>
|
|
{% if not autores_duplicados %}
|
|
<p>{{ NO_ENTRIES_MSG }}</p>
|
|
{% else %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Autor</th>
|
|
<th>Tipo de Autor</th>
|
|
<th>Quantidade</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for autor, tipo, quantidade in autores_duplicados %}
|
|
<tr>
|
|
<td>{{ autor }}</td>
|
|
<td>{{ tipo }}</td>
|
|
<td>{{ quantidade }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html'%}
|
|
<br/>
|
|
{% endblock base_content %}
|