mirror of
https://github.com/Karaka-Management/oms-Surveys.git
synced 2026-01-11 16:08:41 +00:00
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
|
|
$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);
|
|
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="box w-100">
|
|
<table class="table">
|
|
<caption><?= $this->getText('Surveys') ?></caption>
|
|
<thead>
|
|
<tr>
|
|
<td><?= $this->getText('Status'); ?>
|
|
<td class="wf-100"><?= $this->getText('Title'); ?>
|
|
<td><?= $this->getText('Created'); ?>
|
|
<td><?= $this->getText('Creator'); ?>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="4"><?= $footerView->render(); ?>
|
|
<tbody>
|
|
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
|
|
<?php endforeach; ?>
|
|
<?php if($count === 0) : ?>
|
|
<tr><td colspan="4" class="empty"><?= $this->getText('Empty', 0, 0); ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
</div>
|