{% extends "base.html" %} {% block css %} .timestamp { min-width:10em; } .chat-packet:nth-of-type(odd){ background-color: #3a3a3a; /* Lighter than #2a2a2a */ } .chat-packet { border-bottom: 1px solid #555; padding: 8px; border-radius: 8px; /* Adjust the value to make the corners more or less rounded */ } .chat-packet:nth-of-type(even){ background-color: #333333; /* Slightly lighter than the previous #181818 */ } {% endblock %} {% block body %}
{{ site_config["site"]["weekly_net_message"] }}

Number of Check-ins: {{ packets|length }}
{% for packet in packets %}
{{ packet.import_time.strftime('%-I:%M:%S %p - %m-%d-%Y') }} ✉️ {{ packet.from_node.channel }} {{ packet.from_node.long_name or (packet.from_node_id | node_id_to_hex) }} {{ packet.payload }}
{% else %} No packets found. {% endfor %}
{% endblock %}