minor website changes

This commit is contained in:
Per Qvarforth 2022-01-23 22:53:14 +01:00
parent 7f78eaed93
commit 086ddcabb5
3 changed files with 3 additions and 5 deletions

View File

@ -11,6 +11,7 @@ body {
height: 100%;
font-family: "Sans-serif", "Helvetica" !important;
font-size: 14px;
background: #fff;
}

View File

@ -66,10 +66,8 @@
<select name ="seconds" style="width: 280px;">
<option <?php echo ($seconds == 0 ? 'selected' : ''); ?> value="0">Include all known stations in search</option>
<option <?php echo ($seconds == 60 ? 'selected' : ''); ?> value="60">Only stations active latest hour</option>
<option <?php echo ($seconds == 120 ? 'selected' : ''); ?> value="120">Only stations active latest 2 hours</option>
<option <?php echo ($seconds == 360 ? 'selected' : ''); ?> value="360">Only stations active latest 6 hours</option>
<option <?php echo ($seconds == 720 ? 'selected' : ''); ?> value="720">Only stations active latest 12 hours</option>
<option <?php echo ($seconds == 3600 ? 'selected' : ''); ?> value="3600">Only stations active latest 24 hours</option>
</select>
</div>
<div>

View File

@ -435,10 +435,9 @@
<?php if ($station->getLiklyHamRadioCallsign() !== null) : ?>
<div>Search for <a href="https://www.qrz.com/db/<?php echo $station->getLiklyHamRadioCallsign(); ?>" target="_blank"><?php echo htmlspecialchars($station->getLiklyHamRadioCallsign()); ?></a> at QRZ</div>
<?php endif; ?>
<div>Export <a href="http://localhost/kml.php?sid=<?php echo $station->id; ?>"><?php echo htmlspecialchars($station->name); ?></a> data to KML</div>
<?php endif; ?>
<div>Export <a href="/kml.php?sid=<?php echo $station->id; ?>"><?php echo htmlspecialchars($station->name); ?></a> data to KML</div>
</div>
<div style="clear: both;"></div>
<?php endif; ?>