{% load i18n %}

{% trans "Your timeline" %}

{% 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 %}   {% endif %} {% if forloop.revcounter > 1 %}
{% endif %} {% endfor %}
{% endfor %}