mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 13:19:28 +00:00
98918bc336
- Added new phrases where missing or hard coded - Fixed windowz new lines in /application/*
20 lines
747 B
PHP
20 lines
747 B
PHP
<table id="notiztable" class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo ucfirst($this->p->t('global', 'datum')) ?></th>
|
|
<th><?php echo ucfirst($this->p->t('global', 'notiz')) ?></th>
|
|
<th>User</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($notizen as $notiz): ?>
|
|
<tr data-toggle="tooltip"
|
|
title="<?php echo isset($notiz->text) ? html_escape($notiz->text) : '' ?>" style="cursor: pointer">
|
|
<td><?php echo date_format(date_create($notiz->insertamum), 'd.m.Y H:i:s') ?></td>
|
|
<td><?php echo html_escape($notiz->titel) ?></td>
|
|
<td><?php echo $notiz->verfasser_uid ?></td>
|
|
<td style="display: none" class="hiddennotizid"><?php echo $notiz->notiz_id ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|