mirror of https://github.com/interlegis/sapl.git
committed by
João Rodrigues
2 changed files with 75 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load tz %} |
||||
|
{% load common_tags %} |
||||
|
{% block base_content %} |
||||
|
<fieldset> |
||||
|
<h1>Lista de Matérias Legislativas com Protocolo Inexistente</h1> |
||||
|
{% if not materias_com_protocolo_inexistente %} |
||||
|
<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 materias_com_protocolo_inexistente %} |
||||
|
<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