71 lines
3.1 KiB
HTML
71 lines
3.1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Lista de Militantes{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h1 class="mb-4">Lista de Militantes</h1>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }}">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<div class="d-flex justify-content-between mb-4">
|
|
<a href="{{ url_for('criar_militante') }}" class="btn btn-primary">Novo Militante</a>
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Nome</th>
|
|
<th>Email</th>
|
|
<th>Célula</th>
|
|
<th>Responsabilidades</th>
|
|
<th>Ações</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for militante in militantes %}
|
|
<tr>
|
|
<td>{{ militante.nome }}</td>
|
|
<td>{{ militante.email }}</td>
|
|
<td>{{ militante.celula.nome }}</td>
|
|
<td>
|
|
{% if militante.responsabilidades & Militante.RESPONSAVEL_FINANCAS %}
|
|
<span class="badge bg-primary">Finanças</span>
|
|
{% endif %}
|
|
{% if militante.responsabilidades & Militante.RESPONSAVEL_IMPRENSA %}
|
|
<span class="badge bg-info">Imprensa</span>
|
|
{% endif %}
|
|
{% if militante.responsabilidades & Militante.QUADRO_ORIENTADOR %}
|
|
<span class="badge bg-success">Quadro-Orientador</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<a href="{{ url_for('editar_militante', id=militante.id) }}" class="btn btn-sm btn-warning">Editar</a>
|
|
<button type="button" class="btn btn-sm btn-danger" onclick="confirmarExclusao({{ militante.id }})">Excluir</button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function confirmarExclusao(id) {
|
|
if (confirm('Tem certeza que deseja excluir este militante?')) {
|
|
window.location.href = "{{ url_for('excluir_militante', id=0) }}".replace('0', id);
|
|
}
|
|
}
|
|
</script>
|
|
{% endblock %} |