new file: app.py

new file:   rendiciones.db
	new file:   templates/admin_productos.html
	new file:   templates/admin_rendicion_detail.html
	new file:   templates/admin_rendiciones.html
	new file:   templates/admin_structure.html
	new file:   templates/admin_workers.html
	new file:   templates/base.html
	new file:   templates/edit_producto.html
	new file:   templates/edit_worker.html
	new file:   templates/login.html
	new file:   templates/navbar.html
	new file:   templates/worker_dashboard.html
This commit is contained in:
2026-03-18 21:15:26 -03:00
parent 0a5ed0733c
commit 9692f7dd32
13 changed files with 1511 additions and 0 deletions

19
templates/base.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="es" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sistema de Rendiciones</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
{% include 'navbar.html' %}
<div class="container">
{% block content %}{% endblock %}
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>