mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-07-17 23:22:29 +02:00
d25fd6ffd8
I guess that only worked on the search page before.
17 lines
470 B
HTML
17 lines
470 B
HTML
<div id="buttons" class="btn-group" role="group">
|
|
<a
|
|
role="button"
|
|
class="btn {{ 'btn-primary' if packet_event == 'packet' else 'btn-secondary'}}"
|
|
href="/packet_list/{{node_id}}?{{query_string}}"
|
|
>
|
|
TX/RX
|
|
</a>
|
|
<a
|
|
role="button"
|
|
class="btn {{ 'btn-primary' if packet_event == 'uplinked' else 'btn-secondary'}}"
|
|
href="/uplinked_list/{{node_id}}?{{query_string}}"
|
|
>
|
|
Uplinked
|
|
</a>
|
|
</div>
|