Files
wavelog/application/views/view_log/index.php
2024-06-06 20:23:19 +02:00

29 lines
1.3 KiB
PHP

<div class="alert alert-secondary" role="alert" style="margin-bottom: 0px !important;">
<div class="container">
<?php if ($results) { ?>
<p style="margin-bottom: 0px !important;"><?= __("Active Logbook"); ?>: <span class="badge text-bg-info ms-1"><?php echo $this->logbooks_model->find_name($this->session->userdata('active_station_logbook')); ?></span><i id="directory_tooltip" data-bs-toggle="tooltip" data-bs-placement="right" class="fas fa-question-circle text-muted ms-2" data-bs-custom-class="custom-tooltip" data-bs-html="true" data-bs-title="<?= __("Displaying all QSOs of station locations which are linked to this logbook"); ?>"></i> </p>
<?php } ?>
</div>
</div>
<div class="container logbook">
<h2><?= __("Logbook"); ?></h2>
<?php if ($this->session->flashdata('notice')) { ?>
<div class="alert alert-info" role="alert">
<?php echo $this->session->flashdata('notice'); ?>
</div>
<?php } ?>
</div>
<?php if ($this->optionslib->get_option('logbook_map') != "false") { ?>
<script>
let user_map_custom = JSON.parse('<?php echo $user_map_custom; ?>');
</script>
<!-- Map -->
<div id="map" class="map-leaflet" style="width: 100%; height: 350px"></div>
<?php } ?>
<div style="padding-top: 10px; margin-top: 0px;" class="container logbook">
<?php $this->load->view('view_log/partial/log_ajax') ?>