mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-13 08:58:48 +00:00
presupuestador html datos generales terminado
This commit is contained in:
@ -1 +1,2 @@
|
||||
spring.application.name=erp
|
||||
logging.level.org.springframework.security=DEBUG
|
||||
|
||||
@ -1 +0,0 @@
|
||||
t-paginas=Pages
|
||||
@ -1,2 +0,0 @@
|
||||
t-home=Home
|
||||
t-home-title=Welcome to the Print Go Application
|
||||
@ -1,3 +0,0 @@
|
||||
t-menu=Menu
|
||||
t-menu-config=Configuration
|
||||
t-menu-config-impresioras=Printers
|
||||
@ -1,4 +0,0 @@
|
||||
t-printers=Printers
|
||||
t-printers-list=Printers List
|
||||
t-printers-id=ID
|
||||
t-printers-name=Name
|
||||
@ -1 +0,0 @@
|
||||
t-paginas=Páginas
|
||||
@ -1,2 +0,0 @@
|
||||
t-home=Inicio
|
||||
t-home-title=Bienvenido a la aplicación Print Go
|
||||
@ -1,3 +0,0 @@
|
||||
t-menu=Menú
|
||||
t-menu-config=Configuración
|
||||
t-menu-config-impresioras=Impresoras
|
||||
@ -1,4 +0,0 @@
|
||||
t-printers=Impresoras
|
||||
t-printers-list=Lista de Impresoras
|
||||
t-printers-id=ID
|
||||
t-printers-name=Nombre
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 28 KiB |
File diff suppressed because it is too large
Load Diff
@ -1,15 +1,18 @@
|
||||
/*
|
||||
Template Name: Velzon - Admin & Dashboard Template
|
||||
Author: Themesbrand
|
||||
Version: 2.4.0
|
||||
Website: https://Themesbrand.com/
|
||||
Contact: Themesbrand@gmail.com
|
||||
File: Common Plugins Js File
|
||||
*/
|
||||
(function () {
|
||||
const head = document.head || document.getElementsByTagName("head")[0];
|
||||
|
||||
//Common plugins
|
||||
if(document.querySelectorAll("[toast-list]") || document.querySelectorAll('[data-choices]') || document.querySelectorAll("[data-provider]")){
|
||||
document.writeln("<script type='text/javascript' src='https://cdn.jsdelivr.net/npm/toastify-js'></script>");
|
||||
document.writeln("<script type='text/javascript' src='/assets/libs/choices.js/public/assets/scripts/choices.min.js'></script>");
|
||||
document.writeln("<script type='text/javascript' src='/assets/libs/flatpickr/flatpickr.min.js'></script>");
|
||||
}
|
||||
const scripts = [
|
||||
"https://cdn.jsdelivr.net/npm/toastify-js",
|
||||
"/assets/libs/choices.js/public/assets/scripts/choices.min.js",
|
||||
"/assets/libs/flatpickr/flatpickr.min.js",
|
||||
"/assets/libs/feather-icons/feather.min.js" // <- AÑADIMOS feather aquí
|
||||
];
|
||||
|
||||
scripts.forEach(src => {
|
||||
const script = document.createElement("script");
|
||||
script.src = src;
|
||||
script.type = "text/javascript";
|
||||
script.defer = true;
|
||||
head.appendChild(script);
|
||||
});
|
||||
})();
|
||||
|
||||
@ -1,18 +1,16 @@
|
||||
<html>
|
||||
<th:block th:fragment="head-css">
|
||||
|
||||
<body>
|
||||
<div th:fragment="head-css" th:remove="tag">
|
||||
<!-- Layout config Js -->
|
||||
<script src="/assets/js/layout.js"></script>
|
||||
<!-- Bootstrap Css -->
|
||||
<link href="/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- Icons Css -->
|
||||
<link href="/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- App Css-->
|
||||
<link href="/assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- custom Css-->
|
||||
<link href="/assets/css/custom.min.css" rel="stylesheet" type="text/css" />
|
||||
</div>
|
||||
</body>
|
||||
<!-- Layout config Js -->
|
||||
<script src="/assets/js/layout.js"></script>
|
||||
<!-- Bootstrap Css -->
|
||||
<link href="/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- Icons Css -->
|
||||
<link href="/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- App Css-->
|
||||
<link href="/assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- custom Css-->
|
||||
<link href="/assets/css/custom.min.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
</html>
|
||||
<!-- Imprimelibros overrides -->
|
||||
<link href="/assets/css/imprimelibros.css" rel="stylesheet" type="text/css" />
|
||||
</div>
|
||||
@ -7,7 +7,6 @@
|
||||
<script src="/assets/libs/simplebar/simplebar.min.js"></script>
|
||||
<script src="/assets/libs/node-waves/waves.min.js"></script>
|
||||
<script src="/assets/libs/feather-icons/feather.min.js"></script>
|
||||
<script src="/assets/js/pages/plugins/lord-icon-2.1.0.js"></script>
|
||||
<script src="/assets/js/plugins.js"></script>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user