{% regroup timeline by date as tl_list %}
{% for day in tl_list %}
{{ day.grouper|date:"SHORT_DATE_FORMAT" }}
{% for e in day.list %}
{{ e.time|date:"TIME_FORMAT" }}
{{ e.entry.description }}
{% if e.entry.edit_url and e.entry.edit_permission in request.eventpermset %}
{% endif %}
{% if forloop.revcounter > 1 %}
{% endif %}
{% endfor %}