oms-Support/Theme/Backend/support-list.tpl.php
Dennis Eichhorn 97a2d34bcc Merge remote-tracking branch 'origin/develop' into develop
# Conflicts:
#	Draw/Controller.js
#	Draw/Models/DrawType.enum.js
#	Draw/Models/Editor.js
#	Media/Models/UploadFile.php
2017-01-26 16:42:29 +01:00

35 lines
935 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @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
*/
/**
* @var \phpOMS\Views\View $this
*/
echo $this->getData('nav')->render(); ?>
<div class="box w-100">
<table class="table">
<caption><?= $this->getText('Tickets'); ?></caption>
<thead>
<tr><td><?= $this->getText('ID', 0, 0); ?>
<td><?= $this->getText('Status'); ?>
<td><?= $this->getText('Priority'); ?>
<td class="full"><?= $this->getText('Title'); ?>
<td><?= $this->getText('Responsible'); ?>
<tfoot>
<tbody>
<tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
</table>
</div>