{% load i18n %} {% load hro %}
{% for a in activities %}
{{ a.readable_name.get_admin_text|capfirst }} {{ a.started|date:"Y-m-d H:i" }}, {{ a.user }} {% if a.children.count > 0 %}
{% for s in a.children.all %}
{{ s.readable_name|get_text:user }} – {% if s.finished %} {{ s.finished|time:"H:i:s" }} {% else %} {% endif %} {% if s.has_failed %}
{% trans "failed" %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}