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 Pagamento</h1>
|
|
|
|
|
<form method="post">
|
|
|
|
|
<div>
|
|
|
|
|
<label for="militante_id">ID do Militante:</label>
|
|
|
|
|
<input type="number" id="militante_id" name="militante_id" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="tipo_pagamento_id">Tipo de Pagamento:</label>
|
|
|
|
|
<input type="number" id="tipo_pagamento_id" name="tipo_pagamento_id" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="valor">Valor:</label>
|
|
|
|
|
<input type="number" id="valor" name="valor" step="0.01" required>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="data_pagamento">Data do Pagamento:</label>
|
|
|
|
|
<input type="date" id="data_pagamento" name="data_pagamento" required>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="submit">Registrar Pagamento</button>
|
|
|
|
|
</form>
|
|
|
|
|
<a href="{{ url_for('listar_pagamentos') }}">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 %}
|