Cloudlog/application/views/awards/vucc/band.php

44 wiersze
1.3 KiB
PHP
Czysty Zwykły widok Historia

2020-03-15 13:18:49 +00:00
<div class="container">
<h2><?php echo $page_title; ?></h2>
2020-03-15 13:18:49 +00:00
2023-11-05 18:31:07 +00:00
<h3><?php echo lang('general_word_filtering_on'); ?> <?php echo $filter ?></h3>
2020-03-15 13:18:49 +00:00
<?php
$i = 1;
if ($vucc_array) {
echo '<table style="width:100%" class="table table-sm tablevucc table-bordered table-hover table-striped table-condensed text-center">
2020-03-15 13:18:49 +00:00
<thead>
<tr>
<td>#</td>
<td>Gridsquare</td>';
if ($type != 'worked') {
echo '<td>QSL</td>
<td>LoTW</td>';
} else {
echo '<td>Call</td>';
}
echo '</tr>
2020-03-15 13:18:49 +00:00
</thead>
<tbody>';
foreach ($vucc_array as $vucc => $value) { // Fills the table with the data
echo '<tr>
2020-03-15 13:18:49 +00:00
<td>'. $i++ .'</td>
<td><a href=\'javascript:displayContacts("'. $vucc .'","'. $band . '","All","VUCC")\'>'. $vucc .'</td>';
if ($type != 'worked') {
echo '<td>'. $value['qsl'] . '</td>
<td>'. $value['lotw'] .'</td>';
} else {
echo '<td>'. $value['call'] .'</td>';
}
echo '</tr>';
2020-03-15 13:18:49 +00:00
}
echo '</tbody></table></div>';
2020-03-15 13:18:49 +00:00
}
else {
2023-11-14 12:35:53 +00:00
echo '<div class="alert alert-danger" role="alert"><a href="#" class="btn-close" data-bs-dismiss="alert" aria-label="close">&times;</a>Nothing found!</div>';
2020-03-15 13:18:49 +00:00
}
?>