Cloudlog/application/views/layout/messages.php
Peter Goodhall 254f7f3f2a [eQSL] Added Tools this allows you to mark all QSOs as sent to eQSL if manually uploaded
Thanks to M0TAZ for requesting this option, if you have lots of QSOs on a fresh install, use this function to mark all QSOs as uploaded to eQSL when you manually upload ADIF to eQSL.
2020-11-03 16:06:35 +00:00

34 行
无行尾
1,007 B
PHP

<!-- Display Success -->
<?php if($this->session->flashdata('success') != '') { ?>
<div class="alert alert-success" role="alert">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php } ?>
<!-- Display Notices -->
<?php if($this->session->flashdata('notice') != '') { ?>
<div class="alert alert-info" role="alert">
<?php echo $this->session->flashdata('notice'); ?>
</div>
<?php } ?>
<!-- Display Warnings -->
<?php if($this->session->flashdata('warning') != '') { ?>
<div class="alert alert-warning" role="alert">
<?php echo $this->session->flashdata('warning'); ?>
</div>
<?php } ?>
<!-- Display Errors -->
<?php if($this->session->flashdata('error') != '') { ?>
<div class="alert alert-danger" role="alert">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php } ?>
<!-- Display form validation errors -->
<?php if(validation_errors()) { ?>
<div class="alert alert-danger" role="alert">
<?php echo validation_errors(); ?>
</div>
<?php } ?>