fix: Small fixes

This commit is contained in:
2025-11-30 14:15:33 +01:00
parent 92187dc638
commit 6662bcb963
2 changed files with 15 additions and 15 deletions

View File

@@ -10,7 +10,7 @@ html, body {
width: 100%; width: 100%;
grid-template-columns: 100%; grid-template-columns: 100%;
grid-template-rows: auto 1fr auto; grid-template-rows: auto minmax(min-content, 1fr) auto;
grid-template-areas: grid-template-areas:
"intro" "intro"
"table" "table"

View File

@@ -2,29 +2,29 @@
<table class="table table-striped table-bordered table-dresponsive"> <table class="table table-striped table-bordered table-dresponsive">
<thead> <thead>
<tr class="table-dark"> <tr class="table-dark">
<th scope="col">Id</th> <th scope="col">Flugzeug</th>
<th scope="col">Distance</th> <th scope="col">Entfernung</th>
<th scope="col">Altitude</th> <th scope="col">Flughöhe</th>
<th scope="col">Speed</th> <th scope="col">Geschwindigkeit</th>
<th scope="col">Course</th> <th scope="col">Kurs</th>
<th scope="col">Vertical speed</th> <th scope="col">vert. Geschwindigkeit</th>
<th scope="col">Turn rate</th> <th scope="col">Drehrate</th>
<th scope="col">Position</th> <th scope="col">Position</th>
<th scope="col">Last status</th> <th scope="col">Letztes Update</th>
</tr> </tr>
<tr class="table-primary units"> <tr class="table-primary units">
<th scope="col"> <th scope="col">
<b>Registration</b> (call sign)<br> <b>Registrierung</b> (Rufzeichen)<br>
Model / type Typ
</th> </th>
<th scope="col">km</th> <th scope="col">km</th>
<th scope="col">m</th> <th scope="col">m</th>
<th scope="col">km/h</th> <th scope="col">km/h</th>
<th scope="col">°</th> <th scope="col">°</th>
<th scope="col">m/s</th> <th scope="col">m/s</th>
<th scope="col">turns/min</th> <th scope="col">Umdrehungen/min</th>
<th scope="col"> <th scope="col">
Link to map<br> Link zur Karte<br>
(<i><a href="https://live.glidernet.org/">live.glidernet.org</a></i>) (<i><a href="https://live.glidernet.org/">live.glidernet.org</a></i>)
</th> </th>
<th scope="col"></th> <th scope="col"></th>
@@ -40,7 +40,7 @@
<br>{{aircraft.model}} <br>{{aircraft.model}}
{{/if}} {{/if}}
{{#unless aircraft.registration}} {{#unless aircraft.registration}}
<i>unknown</i> <i>unbekannt</i>
{{#if aircraft.model}}<br>{{/if}} {{#if aircraft.model}}<br>{{/if}}
{{aircraft.model}} {{aircraft.model}}
{{/unless}} {{/unless}}
@@ -86,6 +86,6 @@
{{/if}} {{/if}}
{{#unless states}} {{#unless states}}
<div class="alert alert-secondary" role="alert"> <div class="alert alert-secondary" role="alert">
Nothing's above you :( Es fliegt niemand in deiner Nähe 🙁
</div> </div>
{{/unless}} {{/unless}}