{% load i18n %} {% if published_count == 0 %}
{% trans "No About pages have been published yet." %}
{% else %}

{% blocktrans trimmed %} About pages for the following course runs have been published in the past {{ default_published_days }} days. {% endblocktrans %}

{% for course_run in published_course_runs %} {% endfor %}
{% 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 %}
{% endif %}