34 lines
1.6 KiB
PHP
34 lines
1.6 KiB
PHP
<?= $this->extend('layout'); ?>
|
|
|
|
<?= $this->section('css'); ?>
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs5/dt-1.11.5/b-2.2.2/fh-3.2.2/sl-1.3.4/datatables.min.css"/>
|
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css">
|
|
<link rel="stylesheet" href="/css/mawim.css">
|
|
<?= $this->endSection(); ?>
|
|
<?= $this->section('menu'); ?>
|
|
<?= $this->include('sidebar') ?>
|
|
<?= $this->endSection(); ?>
|
|
<?= $this->section('content'); ?>
|
|
<?php session()->set('redirect_url',base_url(route_to('/show-passwords'))); ?>
|
|
<div class="page-content">
|
|
<div class="row">
|
|
<div class="col-xxl-8 col-12">
|
|
<div class="text-white-50"><h2>Terminbuchungen</h2></div>
|
|
<table class="table table-striped table-sm" id="scheduled" cellspacing="0"></table>
|
|
</div>
|
|
<div class="col-xxl-4 col-12 d-none d-xxl-block">
|
|
<div class="text-white-50"><h2>Aktuelle Kontostände</h2></div>
|
|
<table class="table table-striped table-sm" id="accounts" cellspacing="0"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?= $this->endSection(); ?>
|
|
<?= $this->section('scripts'); ?>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
|
|
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
|
|
<script type="text/javascript" src="https://cdn.datatables.net/v/bs5/jq-3.6.0/dt-1.11.5/b-2.2.2/fh-3.2.2/sl-1.3.4/datatables.min.js"></script>
|
|
<script src="/js/tables.js"></script>
|
|
<script src="/js/tab_accounts.js"></script>
|
|
<script src="/js/scheduled.js"></script>
|
|
|
|
<?= $this->endSection(); ?>
|