*/
?>
= __("Worked / Confirmed"); ?>
= __("Show QSO with QSL Type"); ?>
input->post('band') != 'SAT' && $this->input->post('band') != 'All') echo "style=\"display: none\""; ?>>
input->post('band') != 'SAT' && $this->input->post('band') != 'All') echo "style=\"display: none\""; ?>>
| # |
' . __("WAE Name") . ' |
' . __("Prefix") . ' | ';
foreach($bands as $band) {
echo '' . $band . ' | ';
}
echo '
';
foreach ($wae_array as $dxcc => $value) { // Fills the table with the data
echo '
| '. $i++ .' | ';
foreach ($value as $name => $key) {
if (isset($value['Deleted']) && $value['Deleted'] == 1 && $name == "name") {
echo '' . $key . ' '.__("Deleted DXCC").' | ';
} else if ($name == "Deleted") {
continue;
} else {
echo '' . $key . ' | ';
}
}
echo '
';
}
echo '
' . __("Summary") . '
| ';
foreach($bands as $band) {
echo '' . $band . ' | ';
}
echo '' . __("Total") . ' |
| ' . __("Total worked") . ' | ';
foreach ($wae_summary['worked'] as $dxcc) { // Fills the table with the data
echo '' . $dxcc . ' | ';
}
echo '
| ' . __("Total confirmed") . ' | ';
foreach ($wae_summary['confirmed'] as $dxcc) { // Fills the table with the data
echo '' . $dxcc . ' | ';
}
echo '
';
}
else {
echo '' . __("Nothing found!") . '
';
}
?>