{% load i18n %} {% if in_progress_count == 0 %}

{% trans "There are no in progress course runs." %}

{% else %} {% for course_run in in_progress_course_runs %} {% endfor %}
{% trans "Course Name" %} {% trans "Course Number" %} {% trans "Institution" %} {% trans "Start" %} {% trans "End" %}
{{ course_run.title }} {{ course_run.number }} {% if course_run.course.organizations.first %}{{ course_run.course.organizations.first.name }}{% endif %} {{ course_run.start|date:"Y-m-d" }} {{ course_run.end|date:"Y-m-d" }}
{% endif %}