{% load i18n %} {% if published_count == 0 %}
{% blocktrans trimmed %} About pages for the following course runs have been published in the past {{ default_published_days }} days. {% endblocktrans %}
| {% trans "Course Name" %} | {% trans "Course Number" %} | {% trans "Organization" %} | {% trans "Start" %} | {% trans "End" %} | {% trans "Published Date" %} | {% trans "Target Content" %} |
|---|---|---|---|---|---|---|
| {{ course_run.title }} | {{ course_run.number }} | {% if course_run.course.organizations.first %}{{ course_run.course.organizations.first.key }}{% endif %} | {{ course_run.start|date:"Y-m-d" }} | {{ course_run.end|date:"Y-m-d" }} | {{ course_run.state.modified|date:"Y-m-d" }} | {% if course_run.target_content %}Y{% else %}N{% endif %} |