{% load i18n %} {% if preview_count == 0 %}
{% trans "No course runs currently have an About page preview available for course team review." %}
{% else %}

{% trans "About page previews for the following course runs are available for course team review. After the course team approves the preview, the edX publisher will publish the About page for the course run on edx.org. The course team will receive an email message when the About page has been published." %}

{% for course_run in preview_course_runs %} {% endfor %}
{% trans "Course Name" %} {% trans "Organization" %} {% trans "Status" %} {% trans "Modified" %}
{{ course_run.title }}
{{ course_run.preview_url }}
{{ course_run.course.organization_name }} {% if course_run.course_run_state.preview_accepted %} {% trans "Approved since " %} {% elif course_run.preview_declined and course_run.owner_role_is_publisher %} {% trans "Declined since " %} {% elif not course_run.preview_url %} {% trans "Preview Requested since " %} {% else %} {% trans "In Review since " %} {% endif %} {{ course_run.owner_role_modified }} {{ course_run.modified }}
{% endif %}