├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── my-app ├── BD │ └── crud_python.sql ├── app.py ├── conexion │ └── conexionBD.py ├── controllers │ ├── funciones_home.py │ └── funciones_login.py ├── routers │ ├── router_home.py │ ├── router_login.py │ └── router_page_not_found.py ├── run.py ├── static │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── file.css │ │ │ └── my_style.css │ │ ├── customJS │ │ │ ├── buscador.js │ │ │ ├── file.js │ │ │ └── home.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── favicon.ico │ │ │ └── logo.png │ │ ├── js │ │ │ ├── config.js │ │ │ ├── dashboards-analytics.js │ │ │ ├── extended-ui-perfect-scrollbar.js │ │ │ ├── form-basic-inputs.js │ │ │ ├── main.js │ │ │ ├── pages-account-settings-account.js │ │ │ ├── ui-modals.js │ │ │ ├── ui-popover.js │ │ │ └── ui-toasts.js │ │ └── vendor │ │ │ ├── css │ │ │ ├── bootstrap_3_3_6.min.css │ │ │ ├── core.css │ │ │ ├── pages │ │ │ │ ├── page-account-settings.css │ │ │ │ ├── page-auth.css │ │ │ │ ├── page-icons.css │ │ │ │ └── page-misc.css │ │ │ └── theme-default.css │ │ │ ├── fonts │ │ │ ├── boxicons.css │ │ │ └── boxicons │ │ │ │ ├── boxicons.eot │ │ │ │ ├── boxicons.svg │ │ │ │ ├── boxicons.ttf │ │ │ │ ├── boxicons.woff │ │ │ │ └── boxicons.woff2 │ │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ ├── helpers.js │ │ │ └── menu.js │ │ │ └── libs │ │ │ ├── apex-charts │ │ │ ├── apex-charts.css │ │ │ └── apexcharts.js │ │ │ ├── highlight │ │ │ ├── highlight-github.css │ │ │ ├── highlight.css │ │ │ └── highlight.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── masonry │ │ │ └── masonry.js │ │ │ ├── perfect-scrollbar │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ │ └── popper │ │ │ └── popper.js │ ├── downloads-excel │ │ ├── Reporte_empleados_2023_08_14.xlsx │ │ └── Reporte_empleados_2025_01_15.xlsx │ ├── fonts │ │ └── boxicons.scss │ ├── fotos_empleados │ │ ├── 22c055aeec314572a0046ec50b84f21719270dac6ea34c91b8380ac289fff9e5.png │ │ ├── 248cc9c38cfb494bb2300d7cbf4a3b317522f295338b4639a8e025e6b203291c.png │ │ ├── 7b84aceb56534d27aa2e8b727a245dca9f60156a070a47c491ff2d21da1742e5.png │ │ ├── cbdb6dd4017e49c497b0a718027116bcd8e5ff53e7144ad6bf3146dc9d06e5c5.jpg │ │ └── fda30f83ebbc4fb1a2ce2609b2b1e34c6614c1dff6e44460b9ba27ed5bb8e927.png │ ├── js │ │ ├── Spanish.json │ │ ├── bootstrap.js │ │ ├── helpers.js │ │ └── menu.js │ ├── libs │ │ ├── apex-charts │ │ │ ├── apex-charts.scss │ │ │ └── apexcharts.js │ │ ├── highlight │ │ │ ├── highlight-github.scss │ │ │ ├── highlight.js │ │ │ └── highlight.scss │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── masonry │ │ │ └── masonry.js │ │ ├── perfect-scrollbar │ │ │ ├── perfect-scrollbar.js │ │ │ └── perfect-scrollbar.scss │ │ └── popper │ │ │ └── popper.js │ └── tasks │ │ ├── build.js │ │ └── prod.js └── templates │ └── public │ ├── base_cpanel.html │ ├── empleados │ ├── detalles_empleado.html │ ├── form_empleado.html │ ├── form_empleado_update.html │ ├── lista_empleados.html │ └── resultado_busqueda_empleado.html │ ├── includes │ ├── head.html │ ├── js.html │ ├── menu_sidebar.html │ ├── messages.html │ ├── navbar.html │ └── pre_loader.html │ ├── login │ ├── auth_forgot_password.html │ ├── auth_login.html │ ├── auth_register.html │ └── base_login.html │ ├── perfil │ └── perfil.html │ └── usuarios │ └── lista_usuarios.html ├── requirements.txt └── template-sneat-1.0.0.zip /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /my-app/BD/crud_python.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/BD/crud_python.sql -------------------------------------------------------------------------------- /my-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/app.py -------------------------------------------------------------------------------- /my-app/conexion/conexionBD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/conexion/conexionBD.py -------------------------------------------------------------------------------- /my-app/controllers/funciones_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/controllers/funciones_home.py -------------------------------------------------------------------------------- /my-app/controllers/funciones_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/controllers/funciones_login.py -------------------------------------------------------------------------------- /my-app/routers/router_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/routers/router_home.py -------------------------------------------------------------------------------- /my-app/routers/router_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/routers/router_login.py -------------------------------------------------------------------------------- /my-app/routers/router_page_not_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/routers/router_page_not_found.py -------------------------------------------------------------------------------- /my-app/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/run.py -------------------------------------------------------------------------------- /my-app/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /my-app/static/assets/css/file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/css/file.css -------------------------------------------------------------------------------- /my-app/static/assets/css/my_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/css/my_style.css -------------------------------------------------------------------------------- /my-app/static/assets/customJS/buscador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/customJS/buscador.js -------------------------------------------------------------------------------- /my-app/static/assets/customJS/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/customJS/file.js -------------------------------------------------------------------------------- /my-app/static/assets/customJS/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/customJS/home.js -------------------------------------------------------------------------------- /my-app/static/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /my-app/static/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /my-app/static/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /my-app/static/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /my-app/static/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /my-app/static/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/img/avatar.png -------------------------------------------------------------------------------- /my-app/static/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/img/favicon.ico -------------------------------------------------------------------------------- /my-app/static/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/img/logo.png -------------------------------------------------------------------------------- /my-app/static/assets/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/config.js -------------------------------------------------------------------------------- /my-app/static/assets/js/dashboards-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/dashboards-analytics.js -------------------------------------------------------------------------------- /my-app/static/assets/js/extended-ui-perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/extended-ui-perfect-scrollbar.js -------------------------------------------------------------------------------- /my-app/static/assets/js/form-basic-inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/form-basic-inputs.js -------------------------------------------------------------------------------- /my-app/static/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/main.js -------------------------------------------------------------------------------- /my-app/static/assets/js/pages-account-settings-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/pages-account-settings-account.js -------------------------------------------------------------------------------- /my-app/static/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/ui-modals.js -------------------------------------------------------------------------------- /my-app/static/assets/js/ui-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/ui-popover.js -------------------------------------------------------------------------------- /my-app/static/assets/js/ui-toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/js/ui-toasts.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/bootstrap_3_3_6.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/bootstrap_3_3_6.min.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/core.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/pages/page-account-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/pages/page-account-settings.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/pages/page-auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/pages/page-auth.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/pages/page-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/pages/page-icons.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/pages/page-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/pages/page-misc.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/css/theme-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/css/theme-default.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons/boxicons.eot -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons/boxicons.svg -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons/boxicons.ttf -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons/boxicons.woff -------------------------------------------------------------------------------- /my-app/static/assets/vendor/fonts/boxicons/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/fonts/boxicons/boxicons.woff2 -------------------------------------------------------------------------------- /my-app/static/assets/vendor/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/js/bootstrap.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/js/helpers.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/js/menu.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/apex-charts/apex-charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/apex-charts/apex-charts.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/apex-charts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/apex-charts/apexcharts.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/highlight/highlight-github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/highlight/highlight-github.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/highlight/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/highlight/highlight.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/highlight/highlight.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/jquery/jquery.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/masonry/masonry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/masonry/masonry.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.css -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js -------------------------------------------------------------------------------- /my-app/static/assets/vendor/libs/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/assets/vendor/libs/popper/popper.js -------------------------------------------------------------------------------- /my-app/static/downloads-excel/Reporte_empleados_2023_08_14.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/downloads-excel/Reporte_empleados_2023_08_14.xlsx -------------------------------------------------------------------------------- /my-app/static/downloads-excel/Reporte_empleados_2025_01_15.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/downloads-excel/Reporte_empleados_2025_01_15.xlsx -------------------------------------------------------------------------------- /my-app/static/fonts/boxicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fonts/boxicons.scss -------------------------------------------------------------------------------- /my-app/static/fotos_empleados/22c055aeec314572a0046ec50b84f21719270dac6ea34c91b8380ac289fff9e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fotos_empleados/22c055aeec314572a0046ec50b84f21719270dac6ea34c91b8380ac289fff9e5.png -------------------------------------------------------------------------------- /my-app/static/fotos_empleados/248cc9c38cfb494bb2300d7cbf4a3b317522f295338b4639a8e025e6b203291c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fotos_empleados/248cc9c38cfb494bb2300d7cbf4a3b317522f295338b4639a8e025e6b203291c.png -------------------------------------------------------------------------------- /my-app/static/fotos_empleados/7b84aceb56534d27aa2e8b727a245dca9f60156a070a47c491ff2d21da1742e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fotos_empleados/7b84aceb56534d27aa2e8b727a245dca9f60156a070a47c491ff2d21da1742e5.png -------------------------------------------------------------------------------- /my-app/static/fotos_empleados/cbdb6dd4017e49c497b0a718027116bcd8e5ff53e7144ad6bf3146dc9d06e5c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fotos_empleados/cbdb6dd4017e49c497b0a718027116bcd8e5ff53e7144ad6bf3146dc9d06e5c5.jpg -------------------------------------------------------------------------------- /my-app/static/fotos_empleados/fda30f83ebbc4fb1a2ce2609b2b1e34c6614c1dff6e44460b9ba27ed5bb8e927.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/fotos_empleados/fda30f83ebbc4fb1a2ce2609b2b1e34c6614c1dff6e44460b9ba27ed5bb8e927.png -------------------------------------------------------------------------------- /my-app/static/js/Spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/js/Spanish.json -------------------------------------------------------------------------------- /my-app/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/js/bootstrap.js -------------------------------------------------------------------------------- /my-app/static/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/js/helpers.js -------------------------------------------------------------------------------- /my-app/static/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/js/menu.js -------------------------------------------------------------------------------- /my-app/static/libs/apex-charts/apex-charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/apex-charts/apex-charts.scss -------------------------------------------------------------------------------- /my-app/static/libs/apex-charts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/apex-charts/apexcharts.js -------------------------------------------------------------------------------- /my-app/static/libs/highlight/highlight-github.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/highlight/highlight-github.scss -------------------------------------------------------------------------------- /my-app/static/libs/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/highlight/highlight.js -------------------------------------------------------------------------------- /my-app/static/libs/highlight/highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/highlight/highlight.scss -------------------------------------------------------------------------------- /my-app/static/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/jquery/jquery.js -------------------------------------------------------------------------------- /my-app/static/libs/masonry/masonry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/masonry/masonry.js -------------------------------------------------------------------------------- /my-app/static/libs/perfect-scrollbar/perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/perfect-scrollbar/perfect-scrollbar.js -------------------------------------------------------------------------------- /my-app/static/libs/perfect-scrollbar/perfect-scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/perfect-scrollbar/perfect-scrollbar.scss -------------------------------------------------------------------------------- /my-app/static/libs/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/libs/popper/popper.js -------------------------------------------------------------------------------- /my-app/static/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/tasks/build.js -------------------------------------------------------------------------------- /my-app/static/tasks/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/static/tasks/prod.js -------------------------------------------------------------------------------- /my-app/templates/public/base_cpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/base_cpanel.html -------------------------------------------------------------------------------- /my-app/templates/public/empleados/detalles_empleado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/empleados/detalles_empleado.html -------------------------------------------------------------------------------- /my-app/templates/public/empleados/form_empleado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/empleados/form_empleado.html -------------------------------------------------------------------------------- /my-app/templates/public/empleados/form_empleado_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/empleados/form_empleado_update.html -------------------------------------------------------------------------------- /my-app/templates/public/empleados/lista_empleados.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/empleados/lista_empleados.html -------------------------------------------------------------------------------- /my-app/templates/public/empleados/resultado_busqueda_empleado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/empleados/resultado_busqueda_empleado.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/head.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/js.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/menu_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/menu_sidebar.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/messages.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/navbar.html -------------------------------------------------------------------------------- /my-app/templates/public/includes/pre_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/includes/pre_loader.html -------------------------------------------------------------------------------- /my-app/templates/public/login/auth_forgot_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/login/auth_forgot_password.html -------------------------------------------------------------------------------- /my-app/templates/public/login/auth_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/login/auth_login.html -------------------------------------------------------------------------------- /my-app/templates/public/login/auth_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/login/auth_register.html -------------------------------------------------------------------------------- /my-app/templates/public/login/base_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/login/base_login.html -------------------------------------------------------------------------------- /my-app/templates/public/perfil/perfil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/perfil/perfil.html -------------------------------------------------------------------------------- /my-app/templates/public/usuarios/lista_usuarios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/my-app/templates/public/usuarios/lista_usuarios.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /template-sneat-1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/CRUD-COMPLETO-con-Python-MySQL-y-un-Dashboard/HEAD/template-sneat-1.0.0.zip --------------------------------------------------------------------------------