aprs_tool/templates/index.html

59 lines
1.5 KiB
HTML
Raw Normal View History

2023-06-24 11:17:53 -05:00
<!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>
2023-06-24 11:20:58 -05:00
{{station_lat}}, {{station_lon}}
2023-06-24 11:17:53 -05:00
<h3> Recent RF Packets </h3>
<table>
<tr>
<th> from </th>
<th> object_name </th>
2023-06-24 18:44:18 -05:00
<th> raw </th>
2023-06-24 11:17:53 -05:00
<th> created (utc) </th>
<th> more </th>
</tr>
2023-06-24 19:06:37 -05:00
{% for i in frames %}
2023-06-24 11:17:53 -05:00
<tr>
<td> <a href="https://digi.w1cdn.net/aprs_api/packets?from={{ i['from'] }}">{{ i['from'] }}</a> </td>
<td> {{ i['object_name'] }} </td>
2023-06-24 18:44:18 -05:00
<td> {{ i['raw'] }} </td>
2023-06-24 11:17:53 -05:00
<td> {{ i['created'] }} </td>
<td> <a href="https://digi.w1cdn.net/aprs_api/packets?id={{ i['id'] }}">more</a>
</tr>
{% endfor %}
</table>
2023-06-24 11:20:58 -05:00
<h2> Recent Stations </h2>
2023-06-24 11:17:53 -05:00
Coming soon, see <a href="https://amiok.net/gitea/W1CDN/aprs_tool/issues/16">https://amiok.net/gitea/W1CDN/aprs_tool/issues/16</a>.
2023-06-24 19:06:37 -05:00
<table>
<tr>
<th> from </th>
<th> last heard (utc) </th>
<th> count </th>
2023-06-24 19:06:37 -05:00
</tr>
{% for i in stations %}
<tr>
<td> <a href="https://digi.w1cdn.net/aprs_api/packets?from={{ i['from'] }}">{{ i['from'] }}</a> </td>
<td> {{ i['created'] }} </td>
<td> {{ i['COUNT(id)']}} </td>
2023-06-24 19:06:37 -05:00
</tr>
{% endfor %}
</table>
2023-06-24 11:20:58 -05:00
<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.
2023-06-24 11:17:53 -05:00
</body>
</html>