mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adiciona o relatório de reunião * Adiciona relatorio de audiencia * Fix some issues * Arruma os arquivos que foram modificados sem querer * Fix #2195 Co-authored-by: João Pedro Sconetto <sconetto.joao@gmail.com> * Fixing portuguese issuespull/2224/head
Mariana Mendes
6 years ago
committed by
Edward
6 changed files with 229 additions and 7 deletions
@ -0,0 +1,38 @@ |
|||||
|
{% extends "crud/list.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
|
||||
|
{% block base_content %} |
||||
|
{% if not show_results %} |
||||
|
{% crispy filter.form %} |
||||
|
{% endif %} |
||||
|
|
||||
|
{% if show_results %} |
||||
|
<div class="actions btn-group pull-right" role="group"> |
||||
|
<a href="{% url 'sapl.base:audiencia' %}" class="btn btn-default">{% trans 'Fazer nova pesquisa' %}</a> |
||||
|
</div> |
||||
|
<br /><br /><br /><br /> |
||||
|
{% if object_list|length > 0 %} |
||||
|
<table class="table table-bordered table-hover"> |
||||
|
<thead class="thead-default" > |
||||
|
<tr class="active"> |
||||
|
<th>Tipo de Audiência</th> |
||||
|
<th>Nome</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for audiencia in object_list %} |
||||
|
<tr> |
||||
|
<td><a href="{% url 'sapl.audiencia:audienciapublica_detail' audiencia.id %}"> |
||||
|
{{audiencia.tipo}} |
||||
|
</a></td> |
||||
|
<td>{{audiencia.nome}}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
{% else %} |
||||
|
<font size="5"><p align="center">Nenhuma Audiência Pública foi encontrada!</p></font> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
{% endblock base_content %} |
@ -0,0 +1,38 @@ |
|||||
|
{% extends "crud/list.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
|
||||
|
{% block base_content %} |
||||
|
{% if not show_results %} |
||||
|
{% crispy filter.form %} |
||||
|
{% endif %} |
||||
|
|
||||
|
{% if show_results %} |
||||
|
<div class="actions btn-group pull-right" role="group"> |
||||
|
<a href="{% url 'sapl.base:reuniao' %}" class="btn btn-default">{% trans 'Fazer nova pesquisa' %}</a> |
||||
|
</div> |
||||
|
<br /><br /><br /><br /> |
||||
|
{% if object_list|length > 0 %} |
||||
|
<table class="table table-bordered table-hover"> |
||||
|
<thead class="thead-default" > |
||||
|
<tr class="active"> |
||||
|
<th>Comissao</th> |
||||
|
<th>Nome</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for reuniao in object_list %} |
||||
|
<tr> |
||||
|
<td><a href="{% url 'sapl.comissoes:reuniao_detail' reuniao.pk %}"> |
||||
|
{{reuniao.comissao}} |
||||
|
</a></td> |
||||
|
<td>{{reuniao.nome}}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
{% else %} |
||||
|
<font size="5"><p align="center">Nenhum reunião foi encontrada!</p></font> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
{% endblock base_content %} |
Loading…
Reference in new issue