{% for hour in summaries %}
{% if hour.empty %}
{{ hour.empty_message }}
{% else %}
{% for status in hour.statuses %}
{% if status.pre_content %}
{{ status.pre_content }}
{% endif %}
{% if status.origin %}
{{ status.origin.author.screen_name }} "{{ status.origin.text|safe|urlize(40) }}"
{% endif %}
{{ status.text|safe|urlize(40) }} {{ status.created_at|datetime }}
{% if status.post_content %}
{{status.post_content}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}