<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{{station_call}} Status</title>

    <style>
      table, th, td {
        border: 1px solid black;
      }
    </style>
</head>
<body>
   <h1>{{station_call}} Status</h1>
{{station_lat}}, {{station_lon}}

<h3> Recent RF Packets </h3>
   <table>
     <tr>
      <th> from </th>
      <th> object_name </th>
      <th> raw </th>
      <th> created (utc) </th>
      <th> more </th>
    </tr>
        {% for i in frames %}
     <tr>
       <td> <a href="https://digi.w1cdn.net/aprs_api/packets?from={{ i['from'] }}">{{ i['from'] }}</a> </td>
       <td> {{ i['object_name'] }} </td>
       <td> {{ i['raw'] }} </td>
       <td> {{ i['created'] }} </td>
       <td> <a href="https://digi.w1cdn.net/aprs_api/packets?id={{ i['id'] }}">more</a>
     </tr>
      {% endfor %}
  </table>

<h2> Recent Stations </h2>
Coming soon, see <a href="https://amiok.net/gitea/W1CDN/aprs_tool/issues/16">https://amiok.net/gitea/W1CDN/aprs_tool/issues/16</a>.

<table>
  <tr>
   <th> raw </th>
 </tr>
     {% for i in stations %}
  <tr>
    <td> {{ i['raw'] }} </td>
  </tr>
   {% endfor %}
</table>

<h2> Help </h2>
This is a work in progress. See <a href="https://amiok.net/gitea/W1CDN/aprs_tool">https://amiok.net/gitea/W1CDN/aprs_tool</a> for usage.
</body>
</html>