oms-Support/Theme/Backend/support-list.tpl.php
Dennis Eichhorn d3648ef6a6 Language display optimized
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.
2016-07-02 14:14:31 +02:00

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>