mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
25 lines
997 B
PHP
Executable File
25 lines
997 B
PHP
Executable File
<table id="<?= $id ?>" class="table table-striped table-hover" style="width: 100%;">
|
|
<thead>
|
|
<tr>
|
|
<th><?= lang('Chat.datatable_messages.created_at') ?></th>
|
|
<th><?= lang('Chat.datatable_messages.updated_at') ?></th>
|
|
<th><?= lang('Chat.datatable_messages.title') ?></th>
|
|
<th><?= lang('Chat.datatable_messages.message') ?></th>
|
|
<th><?= lang('Chat.datatable_messages.creator') ?></th>
|
|
<th><?= lang('Chat.datatable_messages.viewed') ?></th>
|
|
<th class="text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th><input type="text" class="form-control datatable-message-filter" name="title"></th>
|
|
<th><input type="text" class="form-control datatable-message-filter" name="message"></th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|