mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-22 17:52:16 +00:00
14 lines
273 B
PHP
14 lines
273 B
PHP
<div class="container">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
<?php
|
|
if (isset ($tableheaders)) {
|
|
echo $tableheaders;
|
|
} else {
|
|
echo 'No data imported. please check selected date. Must be in the past!';
|
|
}
|
|
?>
|
|
<?php if (isset ($table)) {echo $table;} ?>
|
|
|
|
</div>
|