{% load i18n %} {% if studio_count > 0 %}

{% trans "The following courses are ready for a Studio URL." %}

{% for course_run in studio_request_courses %} {% url 'publisher:publisher_course_run_detail' course_run.id as run_page_url %} {% endfor %}
{% trans "Course Name" %} {% trans "Organization" %} {% trans "Start Date" %} {% trans "Course Number" %} {% trans "Studio Course Run Key" %}
{{ course_run.title }} {% if course_run.course.organizations.first %}{{ course_run.course.organizations.first.key }}{% endif %} {{ course_run.start|date:"Y-m-d" }} {{ course_run.number }}
{% else %}
{% trans "No courses are currently ready for a Studio URL." %}
{% endif %}