{% load i18n humanize %}

{% trans "Your recent progress" %}

{% for solution in solutions %}
{% if solution.completed %} {% trans "Completed at" %} {{ solution.completed_at }} {% else %} {% trans "In progress" %} ({% trans "started" %}: {{ solution.started_at | naturaltime }}) {% endif %} {% trans "Updated at" %} {{ solution.updated_at | naturaltime }}
{{ solution.activity.lesson.course.title }} {{ solution.activity.lesson.title }} {{ solution.activity.title }}
{% empty %}
You have not started any activity!
{% endfor %}