mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<?= $this->include('themes/_commonPartialsBs/select2bs5') ?>
|
|
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
|
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
|
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
|
|
|
|
|
<?= $this->section('content'); ?>
|
|
<!--Content Body-->
|
|
<div class="row">
|
|
<?= view("themes/vuexy/components/internal_messages", data: ["modelId" => $modelId, "type" => $type]) ?>
|
|
</div>
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
<?= $this->section('css') ?>
|
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/libs/formvalidation/dist/css/formValidation.min.css') ?>" />
|
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/css/pages/app-chat.css') ?>">
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
<?= $this->section("additionalExternalJs") ?>
|
|
<script type="module" src="<?= site_url("assets/js/safekat/pages/messages/internalMessagePage.js") ?>"></script>
|
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/FormValidation.js") ?>"></script>
|
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/plugins/Bootstrap5.min.js") ?>"></script>
|
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/plugins/AutoFocus.min.js") ?>"></script>
|
|
</script>
|
|
<?= $this->endSection() ?>
|