mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-22 21:58:41 +00:00
Language is now no longer direct array access but provided through a function. This can be later used to hot load language files instead of pre-loading them.
35 lines
1.0 KiB
PHP
35 lines
1.0 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 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="box w-100">
|
|
<table class="table">
|
|
<caption><?= $this->l11n->getText('Support', 'Tickets'); ?></caption>
|
|
<thead>
|
|
<tr><td><?= $this->l11n->getText(0, 'ID'); ?>
|
|
<td><?= $this->l11n->getText('Support', 'Status'); ?>
|
|
<td><?= $this->l11n->getText('Support', 'Priority'); ?>
|
|
<td class="full"><?= $this->l11n->getText('Support', 'Title'); ?>
|
|
<td><?= $this->l11n->getText('Support', 'Responsible'); ?>
|
|
<tfoot>
|
|
<tbody>
|
|
<tr><td colspan="5" class="empty"><?= $this->l11n->getText(0, 'Empty'); ?>
|
|
</table>
|
|
</div>
|