{% extends "base.html" %} {% block css %} .timestamp { min-width:10em; } .chat-packet:nth-of-type(odd){ background-color:#1f1f1f; } .chat-packet:nth-of-type(even){ background-color:#181818; } {% endblock %} {% block body %}
{% for packet in packets %} {% include 'chat_packet.html' %} {% else %} No packets found. {% endfor %}
{% endblock %}