mirror of
https://github.com/Karaka-Management/oms-ClientManagement.git
synced 2026-02-12 14:58:43 +00:00
Added log view
This commit is contained in:
parent
2e18354fb3
commit
29e9a92486
|
|
@ -29,6 +29,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<li><label for="c-tab-6"><?= $this->getText('Prices') ?></label></li>
|
<li><label for="c-tab-6"><?= $this->getText('Prices') ?></label></li>
|
||||||
<li><label for="c-tab-7"><?= $this->getText('AreaManager') ?></label></li>
|
<li><label for="c-tab-7"><?= $this->getText('AreaManager') ?></label></li>
|
||||||
<li><label for="c-tab-8"><?= $this->getText('Files') ?></label></li>
|
<li><label for="c-tab-8"><?= $this->getText('Files') ?></label></li>
|
||||||
|
<li><label for="c-tab-9"><?= $this->getText('Logs') ?></label>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
|
|
@ -225,5 +226,36 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<input type="radio" id="c-tab-8" name="tabular-2">
|
<input type="radio" id="c-tab-8" name="tabular-2">
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
</div>
|
</div>
|
||||||
|
<input type="radio" id="c-tab-9" name="tabular-2">
|
||||||
|
<div class="tab">
|
||||||
|
<?php
|
||||||
|
$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
|
||||||
|
$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
|
||||||
|
$footerView->setPages(20);
|
||||||
|
$footerView->setPage(1);
|
||||||
|
?>
|
||||||
|
<div class="box w-100">
|
||||||
|
<table class="table">
|
||||||
|
<caption><?= $this->getText('Logs') ?></caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td>IP
|
||||||
|
<td><?= $this->getText('ID', 0, 0); ?>
|
||||||
|
<td><?= $this->getText('Name'); ?>
|
||||||
|
<td class="wf-100"><?= $this->getText('Log'); ?>
|
||||||
|
<td><?= $this->getText('Date'); ?>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<td colspan="6"><?= $footerView->render(); ?>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><?= $this->request->getOrigin(); ?>
|
||||||
|
<td><?= $this->request->getAccount(); ?>
|
||||||
|
<td><?= $this->request->getAccount(); ?>
|
||||||
|
<td>Creating customer
|
||||||
|
<td><?= (new \DateTime('now'))->format('Y-m-d H:i:s') ?>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@ return ['ClientManagement' => [
|
||||||
'Contact' => 'Contact',
|
'Contact' => 'Contact',
|
||||||
'Country' => 'Country',
|
'Country' => 'Country',
|
||||||
'Creditcard' => 'Creditcard',
|
'Creditcard' => 'Creditcard',
|
||||||
|
'Date' => 'Date',
|
||||||
'Default' => 'Default',
|
'Default' => 'Default',
|
||||||
'Delivery' => 'Delivery',
|
'Delivery' => 'Delivery',
|
||||||
'Discount' => 'Discount',
|
'Discount' => 'Discount',
|
||||||
|
|
@ -40,6 +41,8 @@ return ['ClientManagement' => [
|
||||||
'Info' => 'Info',
|
'Info' => 'Info',
|
||||||
'Invoice' => 'Invoice',
|
'Invoice' => 'Invoice',
|
||||||
'IsDefault' => 'Is default?',
|
'IsDefault' => 'Is default?',
|
||||||
|
'Log' => 'Log',
|
||||||
|
'Logs' => 'Logs',
|
||||||
'Master' => 'Master',
|
'Master' => 'Master',
|
||||||
'Name' => 'Name',
|
'Name' => 'Name',
|
||||||
'Name1' => 'Name1',
|
'Name1' => 'Name1',
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<li><label for="c-tab-6"><?= $this->getText('Prices') ?></label></li>
|
<li><label for="c-tab-6"><?= $this->getText('Prices') ?></label></li>
|
||||||
<li><label for="c-tab-7"><?= $this->getText('AreaManager') ?></label></li>
|
<li><label for="c-tab-7"><?= $this->getText('AreaManager') ?></label></li>
|
||||||
<li><label for="c-tab-8"><?= $this->getText('Files') ?></label></li>
|
<li><label for="c-tab-8"><?= $this->getText('Files') ?></label></li>
|
||||||
|
<li><label for="c-tab-9"><?= $this->getText('Logs') ?></label>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
|
|
@ -225,5 +226,36 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<input type="radio" id="c-tab-8" name="tabular-2">
|
<input type="radio" id="c-tab-8" name="tabular-2">
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
</div>
|
</div>
|
||||||
|
<input type="radio" id="c-tab-9" name="tabular-2">
|
||||||
|
<div class="tab">
|
||||||
|
<?php
|
||||||
|
$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
|
||||||
|
$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
|
||||||
|
$footerView->setPages(20);
|
||||||
|
$footerView->setPage(1);
|
||||||
|
?>
|
||||||
|
<div class="box w-100">
|
||||||
|
<table class="table">
|
||||||
|
<caption><?= $this->getText('Logs') ?></caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td>IP
|
||||||
|
<td><?= $this->getText('ID', 0, 0); ?>
|
||||||
|
<td><?= $this->getText('Name'); ?>
|
||||||
|
<td class="wf-100"><?= $this->getText('Log'); ?>
|
||||||
|
<td><?= $this->getText('Date'); ?>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<td colspan="6"><?= $footerView->render(); ?>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><?= $this->request->getOrigin(); ?>
|
||||||
|
<td><?= $this->request->getAccount(); ?>
|
||||||
|
<td><?= $this->request->getAccount(); ?>
|
||||||
|
<td>Creating customer
|
||||||
|
<td><?= (new \DateTime('now'))->format('Y-m-d H:i:s') ?>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user