mirror of https://github.com/interlegis/sapl.git
committed by
João Rodrigues
4 changed files with 20 additions and 46 deletions
@ -1,34 +0,0 @@ |
|||||
{% extends "base.html" %} |
|
||||
{% load i18n %} |
|
||||
{% load tz %} |
|
||||
{% load common_tags %} |
|
||||
{% block base_content %} |
|
||||
<fieldset> |
|
||||
<h1>Lista de Parlamentares com Mandatos com Interseção</h1> |
|
||||
{% if not parlamentares_mandatos_intersecao %} |
|
||||
<p>{{ NO_ENTRIES_MSG }}</p> |
|
||||
{% else %} |
|
||||
<table class="table table-striped table-hover"> |
|
||||
<thead> |
|
||||
<tr> |
|
||||
<th>Matéria Legislativa</th> |
|
||||
<th>Ano</th> |
|
||||
<th>Número Protocolo</th> |
|
||||
</tr> |
|
||||
</thead> |
|
||||
<tbody> |
|
||||
{% for materia, ano, numero_protocolo in parlamentares_mandatos_intersecao %} |
|
||||
<tr> |
|
||||
<td> |
|
||||
<a href="{% url 'sapl.materia:pesquisar_materia' %}">{{ materia }}</a> |
|
||||
</td> |
|
||||
<td>{{ ano }}</td> |
|
||||
<td>{{ numero_protocolo }}</td> |
|
||||
</tr> |
|
||||
{% endfor %} |
|
||||
</tbody> |
|
||||
</table> |
|
||||
{% endif %} |
|
||||
</fieldset> |
|
||||
{% include 'paginacao.html'%} |
|
||||
{% endblock base_content %} |
|
||||
Loading…
Reference in new issue