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

{% trans "There are no course runs marked for preview." %}

{% else %}

{% trans "The list below contains all course runs awaiting course team approval. Once approved, the marketing team will push the course run. you will be notified via email when the course runs are live on the production site." %}

{% for course_run in preview_course_runs %} {% endfor %}
{% trans "Course Name" %} {% trans "Organization" %} {% trans "Approved" %} {% trans "Preview URL" %}
{{ course_run.title }} {% if course_run.course.organizations.first %}{{ course_run.course.organizations.first.name }}{% endif %} {{ course_run.state }} {{ course_run.preview_url }}
{% endif %}