Skip to content

Commit

Permalink
Merge pull request #43 from davewalker5/sightings-location
Browse files Browse the repository at this point in the history
Added sighting location to the sighting reports
  • Loading branch information
davewalker5 authored Nov 30, 2024
2 parents ca5392f + 2784601 commit e7d458d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
{
<table class="table">
<tr>
<th>Location</th>
<th>Flight</th>
<th>Airline</th>
<th>Route</th>
Expand All @@ -26,6 +27,7 @@
var manufacturerName = sighting.Aircraft.Model?.Manufacturer?.Name ?? "";

<tr>
<td valign="center">@sighting.Location.Name</td>
<td valign="center">@sighting.Flight.Number</td>
<td valign="center">@sighting.Flight.Airline.Name</td>
<td valign="center">@sighting.Flight.Route</td>
Expand Down

0 comments on commit e7d458d

Please sign in to comment.