Added SQL, dao and app - not functional
This commit is contained in:
30
templates/novo_relatorio_cotas.html
Normal file
30
templates/novo_relatorio_cotas.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Novo Relatório de Cotas</title>
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user