mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-21 00:00:26 +00:00
73 lines
2.8 KiB
HTML
73 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorate="~{imprimelibros/layout}">
|
|
|
|
<head>
|
|
<th:block layout:fragment="pagetitle" />
|
|
<th:block th:replace="~{imprimelibros/partials/head-css :: head-css}" />
|
|
<th:block layout:fragment="pagecss">
|
|
<link href="/assets/libs/datatables/dataTables.bootstrap5.min.css" rel="stylesheet" />
|
|
</th:block>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div th:replace="~{imprimelibros/partials/topbar :: topbar}" />
|
|
<div th:replace="~{imprimelibros/partials/sidebar :: sidebar}"
|
|
sec:authorize="isAuthenticated() and hasAnyRole('SUPERADMIN','ADMIN')">
|
|
|
|
<th:block layout:fragment="content">
|
|
<div th:if="${isAuth}">
|
|
|
|
|
|
<div class="container-fluid">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/"><i class="ri-home-5-fill"></i></a></li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row" id="card">
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
<h3 th:text="#{pagos.transferencia.ok.title}"></h3>
|
|
<span th:utext="#{pagos.transferencia.ok.text(${importe}, ${concepto})}"></span>
|
|
<div class="d-flex flex-wrap justify-content-center">
|
|
<a th:href="@{/}" class="btn btn-secondary mt-3">
|
|
<i class="ri-home-5-fill me-1"></i>
|
|
<span th:text="#{app.back}">Volver</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--end row-->
|
|
</div>
|
|
</div>
|
|
</th:block>
|
|
|
|
<th:block th:replace="~{theme/partials/vendor-scripts :: scripts}" />
|
|
<th:block layout:fragment="pagejs">
|
|
<script th:inline="javascript">
|
|
window.languageBundle = /*[[${languageBundle}]]*/ {};
|
|
</script>
|
|
|
|
<!-- JS de Buttons y dependencias -->
|
|
<div th:if="${appMode} == 'view'">
|
|
<script type="module" th:src="@{/assets/js/pages/imprimelibros/presupuestador/wizard-publicos.js}"></script>
|
|
</div>
|
|
<div th:if="${appMode} == 'edit'">
|
|
<script type="module" th:src="@{/assets/js/pages/imprimelibros/presupuestador/wizard-privado.js}"></script>
|
|
</div>
|
|
|
|
<script type="module" th:src="@{/assets/js/pages/imprimelibros/presupuestos/resumen-view.js}"></script>
|
|
|
|
</th:block>
|
|
</body>
|
|
|
|
</html> |