31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?= $this->extend('layout'); ?>
|
|
|
|
<?= $this->section('css'); ?>
|
|
<link rel="stylesheet" href="/assets/jquery-ui-1.13.2.custom/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('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="/assets/jquery-ui-1.13.2.custom/jquery-ui.js"></script>
|
|
<script src="/js/tables.js"></script>
|
|
<script src="/js/tab_accounts.js"></script>
|
|
<script src="/js/scheduled.js"></script>
|
|
|
|
<?= $this->endSection(); ?>
|