{% load i18n %}
{% if can_edit %} {% trans "EDIT" %}
{% endif %}
{% trans "COURSE RUNS" %}
{% trans "ADD RUN" %}
{% for course_run in course.course_runs %}
{% blocktrans with created_date=course_run.created.date created_time=course_run.created.time created_by=course_run.created_by.full_name %} Created {{ created_date }} at {{ created_time }} by {{ created_by }} {% endblocktrans %}
{% trans "STUDIO URL" %} - {% if course_run.studio_url %} {{ course_run.lms_course_id }} {% else %} {% trans "Not yet created" %} {% endif %}
{% endfor %}
{% include 'publisher/_history_widget.html' %}
{% include 'publisher/_approval_widget.html' %}