diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-24 17:29:33 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-24 17:29:33 +0100 |
commit | 67441f813917d0a9c6624ec04ddc08d89ec2b3bc (patch) | |
tree | 8071903dc1c6982daa2fd84e2cc867e276c1160e /templates/dashboard.html | |
parent | 82f6ce1b1f003903c0e8ffceafe17682ecd7fb88 (diff) | |
download | cats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.tar.gz cats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.tar.bz2 cats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.zip |
Work on chat page
Diffstat (limited to 'templates/dashboard.html')
-rw-r--r-- | templates/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/dashboard.html b/templates/dashboard.html index a58bec6..029993b 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -10,7 +10,7 @@ <h2>Ten most recent packets</h2> <ul> {% for packet in packets %} - <li>{{ packet.received_at|e }} <b>{{ packet.from_callsign|e }}-{{ packet.from_ssid|e }}</b> + <li>{{ packet.received_at_iso()|e }} <b>{{ packet.from_callsign|e }}-{{ packet.from_ssid|e }}</b> {% match packet.comment %}{% when Some with (val) %}{{ val|e }}{% when None %}N/A{% endmatch %} </li> {% endfor %} |