Stub out station query.

This commit is contained in:
W1CDN
2023-06-24 19:06:37 -05:00
parent f6a71e4851
commit 1362558deb
2 changed files with 31 additions and 2 deletions

View File

@ -23,7 +23,7 @@
<th> created (utc) </th>
<th> more </th>
</tr>
{% for i in d %}
{% 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>
@ -37,6 +37,17 @@
<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>