mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
70 lines
2.8 KiB
PHP
Executable File
70 lines
2.8 KiB
PHP
Executable File
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
|
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
|
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
|
<?= $this->section('content'); ?>
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h4><?= $boxTitle ?></h4>
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<div class="row mb-3">
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 "
|
|
onclick="window.location.href='<?= route_to('selectEnvios', 'simple') ?>'"
|
|
>
|
|
<?= lang('Logistica.envioSimple') ?>
|
|
</button>
|
|
</div>
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.envioMultiple') ?>
|
|
</button>
|
|
</div>
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.envioConjunto') ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.etiquetasTitulos') ?>
|
|
</button>
|
|
</div>
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.etiquetasEnvio') ?>
|
|
</button>
|
|
</div>
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.envioFerros') ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-4">
|
|
<button type="button" style="height: 80px;" class="btn btn-primary w-100 " >
|
|
<?= lang('Logistica.cerrarOTauto') ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->endSection(); ?>
|
|
|
|
<?= $this->section('css') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('additionalExternalJs') ?>
|
|
<?= $this->endSection() ?>
|