Melhorada interface dos formulários. Adicionado a opção de editar os Militantes direto da Lista

This commit is contained in:
LS
2025-02-20 10:39:31 -03:00
parent 765688df1f
commit 37d45e250f
14 changed files with 341 additions and 84 deletions

View File

@@ -25,9 +25,11 @@
<label for="data_venda">Data da Venda:</label>
<input type="date" id="data_venda" name="data_venda" required>
</div>
<button type="submit">Registrar Material</button>
<div class="d-flex gap-2">
<button type="submit" class="btn btn-primary">Registrar</button>
<a href="{{ url_for('listar_materiais') }}" class="btn btn-secondary">Voltar</a>
<a href="{{ url_for('home') }}" class="btn btn-outline-primary">Início</a>
</div>
</form>
<a href="{{ url_for('listar_materiais') }}">Voltar para Lista</a>
<a href="{{ url_for('home') }}">Home</a>
{% endblock %}