mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
4 years ago
5 changed files with 307 additions and 37 deletions
@ -0,0 +1 @@ |
|||||
|
{% extends "change_list_with_cart.html" %} |
@ -0,0 +1,63 @@ |
|||||
|
{% extends "admin/carrinho.html" %} |
||||
|
{% load admin_list i18n %} |
||||
|
{% block extrastyle %} |
||||
|
{{ block.super }} |
||||
|
{#% include "admin/tabs_style.html" %#} |
||||
|
{% endblock %} |
||||
|
|
||||
|
{% block title %}{% trans 'Eventos no Carrinho | SIGI' %}{% endblock %} |
||||
|
{% block content_title %}<h1>{% trans 'Eventos no Carrinho' %}</h1>{% endblock %} |
||||
|
|
||||
|
{% block mensagem%} |
||||
|
<ul class="messagelist"> |
||||
|
{%if carIsEmpty%} |
||||
|
<li class="warning">{% trans 'O carrinho está vazio, sendo assim todos os eventos entram na lista para exportação de acordo com os filtros aplicados.' %}</li> |
||||
|
{%else%} |
||||
|
<li>{{paginas.paginator.count}} {% trans 'Eventos no carrinho' %}.</li> |
||||
|
{%endif%} |
||||
|
</ul> |
||||
|
{% endblock %} |
||||
|
|
||||
|
{% block action %}deleta_itens_carrinho{% endblock %} |
||||
|
|
||||
|
{% block tabela %} |
||||
|
<table class="table table-striped"> |
||||
|
<thead class="thead-dark"> |
||||
|
<tr> |
||||
|
{%if not carIsEmpty%} |
||||
|
<th><!-- <input type="checkbox" id="action-toggle" style="display: inline;">--> |
||||
|
</th> |
||||
|
{% endif %} |
||||
|
<th>{% trans 'Nome do evento' %}</th> |
||||
|
<th>{% trans 'Tipo evento' %}</th> |
||||
|
<th>{% trans 'Status' %}</th> |
||||
|
<th>{% trans 'Data de início' %}</th> |
||||
|
<th>{% trans 'Data de término' %}</th> |
||||
|
<th>{% trans 'município' %}</th> |
||||
|
<th>{% trans 'Solicitante' %}</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for evento in paginas.object_list %} |
||||
|
<tr> |
||||
|
{%if not carIsEmpty%} |
||||
|
<th><input type="checkbox" name="_selected_action" |
||||
|
value="{{evento.id|safe}}" class="action-select" /> |
||||
|
</th> |
||||
|
{% endif %} |
||||
|
<td style="text-align: left;">{{evento.nome}}</td> |
||||
|
<td>{{evento.tipo_evento}}</td> |
||||
|
<td>{{evento.get_status_display}}</td> |
||||
|
<td>{{evento.data_inicio}}</td> |
||||
|
<td>{{evento.data_termino}}</td> |
||||
|
<td>{{evento.municipio}}</td> |
||||
|
<td>{{evento.solicitante}}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
{% endblock %} |
||||
|
|
||||
|
{% block botoes %} |
||||
|
<a class="btn btn-primary" href="../csv/{{query_str}}">{% trans "Exportar CVS" %}</a> |
||||
|
{% endblock %} |
Loading…
Reference in new issue