modalized edit worker + global css

This commit is contained in:
2026-03-19 23:32:55 -03:00
parent a1bfb25abf
commit e430c732bd
7 changed files with 125 additions and 118 deletions

View File

@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sistema de Rendiciones - {% block title %}{% endblock %}</title>
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}" type="image/x-icon">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet">
</head>

View File

@@ -61,4 +61,58 @@
</div>
</div>
</div>
{% endmacro %}
{% macro edit_worker_modal(modulos) %}
<div class="modal fade" id="editWorkerModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Trabajador</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form id="editWorkerForm" method="POST" action="">
<div class="mb-3">
<label class="form-label text-muted-rut">RUT (No editable)</label>
<input type="text" class="form-control" id="edit_worker_rut" readonly>
</div>
<div class="mb-3">
<label class="form-label">Nombre Completo</label>
<input type="text" class="form-control" name="name" id="edit_worker_name" required>
</div>
<div class="mb-3">
<label class="form-label">Teléfono</label>
<input type="text" class="form-control phone-input" name="phone" id="edit_worker_phone" required>
</div>
<div class="mb-3">
<label class="form-label">Módulo Asignado</label>
<select class="form-select" name="modulo_id" id="edit_worker_modulo" required>
{% for mod in modulos %}
<option value="{{ mod[0] }}">{{ mod[2] }} - {{ mod[1] }}</option>
{% endfor %}
</select>
</div>
</form>
<hr>
<div class="d-grid">
<form id="resetPasswordForm" method="POST" action="" onsubmit="return confirm('¿Generar nueva contraseña?');">
<button type="submit" class="btn btn-outline-warning btn-sm w-100">
<i class="bi bi-key me-1"></i> Restablecer Contraseña
</button>
</form>
<small class="text-muted text-center mt-1">Generará una nueva clave aleatoria.</small>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancelar</button>
<button type="submit" form="editWorkerForm" class="btn btn-primary">Guardar Cambios</button>
</div>
</div>
</div>
</div>
{% endmacro %}