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