{% capture course_label %}{% endcapture %} {% capture course_data_label %}none{% endcapture %} {% assign course_is_new = false %} {% assign created_at_date_seconds = current_person.created_at | date: "%s" %} {% assign course_published_date_seconds = course.properties.initial_publish_date | date: "%s" %} {% if course_published_date_seconds > created_at_date_seconds %}{% assign course_is_new = true %}{% endif %} {% if course_is_new %} {% if course.progress == 0 %} {% capture course_label %}
New
{% endcapture %} {% capture course_data_label %}new{% endcapture %} {% endif %} {% endif %} {% if course.progress > 0 and course.progress < 100 %} {% capture course_label %}
In progress
{% endcapture %} {% capture course_data_label %}in-progress{% endcapture %} {% elsif course.completed? %} {% capture course_label %}
Viewed
{% endcapture %} {% capture course_data_label %}viewed{% endcapture %} {% endif %}
{{ course.name }}
{% if course.properties.course_length != 'NULL' %}
{{ course.properties.course_length }}
{% endif %} {{course_label}}