Files
wavelog/application/views/qslprint/index.php
2025-09-12 14:34:00 +00:00

54 lines
2.2 KiB
PHP

<div class="container">
<br>
<?php if($this->session->flashdata('message')) { ?>
<!-- Display Message -->
<div class="alert-message error">
<p><?php echo $this->session->flashdata('message'); ?></p>
</div>
<?php } ?>
<h2><?php echo $page_title; ?></h2>
<div class="card">
<div class="card-header">
<?= __("Export Requested QSLs for Printing"); ?>
</div>
<div class="card-body">
<form class="form" action="<?php echo site_url('adif/import'); ?>" method="post" enctype="multipart/form-data">
<label for="station_profile" class="me-2"><?= __("Station Location"); ?>:</label>
<select name="station_profile" class="station_id form-select mb-3 me-sm-3" style="width: 20%;">
<option value="All"><?= __("All"); ?></option>
<?php foreach ($station_profile->result() as $station) { ?>
<option <?php if ($station->station_id == $station_id) { echo "selected "; } ?>value="<?php echo $station->station_id; ?>"><?= __("Callsign"); ?>: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
<?php } ?>
</select>
</form>
<!-- Switch Band or Frequency display -->
<div>
<label for="frequency_or_band" class="me-2"><?= __("Show Band or Frequency:"); ?></label>
<select id="frequency_or_band" class="form-select mb-3 me-sm-3" style="width: 20%;">
<option value="band" selected><?= __("Band"); ?></option>
<option value="frequency"><?= __("Frequency"); ?></option>
<option value="both"><?= __("Band & Frequency"); ?></option>
</select>
</div>
<p class="card-text"><?= __("Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent."); ?></p>
<p class="card-text">
<?= __("Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field."); ?><br>
<?= sprintf(__("The column %s shows how many QSLs have been sent to the same station before on the same band and mode."), "'" . __("Previous QSL") . "'"); ?>
</p>
<div class="resulttable">
<?php
$data2['qsos'] = $qsos;
$this->load->view('qslprint/qslprint', $data2);
?>
</div>
</div>
</div>
</div>