{% 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 "Institution" %} {% trans "Start" %} {% trans "End" %} {% trans "Target Content" %} {% trans "SEO Review" %}
{{ course_run.title }} {% 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" }} {% if course_run.target_content %}Y{% else %}N{% endif %} {% if course_run.is_seo_review %}Y{% else %}N{% endif %}
{% endif %}