mirror of
https://github.com/Karaka-Management/oms-HumanResourceTimeRecording.git
synced 2026-01-16 14:18:41 +00:00
41 lines
1.3 KiB
PHP
Executable File
41 lines
1.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package HumanResourceTimeRecording
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
/** @var \Modules\HumanResourceTimeRecording\Models\Session $session */
|
|
$session = $this->data['session'];
|
|
$elements = $session->getSessionElements();
|
|
|
|
echo $this->data['nav']->render(); ?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box wf-100">
|
|
<table id="accountList" class="default">
|
|
<caption><?= $session->start->format('Y-m-d'); ?><i class="fa fa-download end-xs download btn"></i></caption>
|
|
<thead>
|
|
<tr>
|
|
<td><?= $this->getHtml('Status'); ?>
|
|
<td class="wf-100"><?= $this->getHtml('Time'); ?>
|
|
<td class="wf-100"><?= $this->getHtml('Date'); ?>
|
|
<tbody>
|
|
<?php foreach ($elements as $element) : ?>
|
|
<tr>
|
|
<td><?= $this->getHtml('CS' . $element->getStatus()); ?>
|
|
<td><?= $element->datetime->format('H:i:s'); ?>
|
|
<td><?= $element->datetime->format('Y-m-d'); ?>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|