mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
33 lines
956 B
PHP
33 lines
956 B
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 } ?>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<?= __("ADIF Imported")?>
|
|
</div>
|
|
<div class="card-body">
|
|
<h3 class="card-title"><?= __("Yay, its imported!")?></h3>
|
|
<p class="card-text"><?= __("The ADIF File has been imported.")?>
|
|
<?php if(isset($skip_dupes)) {
|
|
echo " <b>" . __("Dupes were inserted!") . "</b>";
|
|
} else {
|
|
echo " ".__("Dupes were skipped.");
|
|
} ?>
|
|
</p>
|
|
<?php if($adif_errors) { ?>
|
|
<h3><?= __("ADIF Errors")?></h3>
|
|
<p><?= __("You have ADIF errors, the QSOs have still been added but these fields have not been populated.")?></p>
|
|
<p class="card-text"><?php echo $adif_errors; ?></p>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|