mirror of https://github.com/interlegis/sapl.git
committed by
João Rodrigues
3 changed files with 88 additions and 5 deletions
@ -0,0 +1,34 @@ |
|||
{% extends "base.html" %} |
|||
{% load i18n %} |
|||
{% load tz %} |
|||
{% load common_tags %} |
|||
{% block base_content %} |
|||
<fieldset> |
|||
<h1>Lista de Autores Duplicados</h1> |
|||
{% 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, quantidade in autores_duplicados %} |
|||
<tr> |
|||
<td> |
|||
<a>{{ autor }}</a> |
|||
</td> |
|||
<td>{{ autor.tipo }}</td> |
|||
<td>{{ quantidade }}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
{% endif %} |
|||
</fieldset> |
|||
{% include 'paginacao.html'%} |
|||
{% endblock base_content %} |
|||
Loading…
Reference in new issue