2025-02-19 14:27:14 -03:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block title %}Listar Militantes{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2024-11-26 10:57:25 -03:00
|
|
|
<h1>Registrar Novo Relatório de Cotas</h1>
|
|
|
|
|
<form method="post">
|
|
|
|
|
<div>
|
|
|
|
|
<label for="setor_id">ID do Setor:</label>
|
|
|
|
|
<input type="number" id="setor_id" name="setor_id" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="comite_id">ID do Comitê:</label>
|
|
|
|
|
<input type="number" id="comite_id" name="comite_id" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="total_cotas">Total de Cotas:</label>
|
|
|
|
|
<input type="number" id="total_cotas" name="total_cotas" step="0.01" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="data_relatorio">Data do Relatório:</label>
|
|
|
|
|
<input type="date" id="data_relatorio" name="data_relatorio" required>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="submit">Registrar Relatório</button>
|
|
|
|
|
</form>
|
|
|
|
|
<a href="{{ url_for('listar_relatorios_cotas') }}">Voltar para Lista</a>
|
2025-01-08 00:19:49 -03:00
|
|
|
<a href="{{ url_for('home') }}">Home</a>
|
2025-02-19 14:27:14 -03:00
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|