{% extends 'publisher/base.html' %} {% load compress %} {% load i18n %} {% load static %} {% block title %} {% trans "Course Run Details" %} {% endblock title %} {% block page_content %}
{% if object.course_run_state.is_published %}
{% blocktrans with publish_date|date:'m/d/y' as course_publish_date trimmed %} The About page for this course run was published on {{ course_publish_date }}. {% endblocktrans %} {% if object.preview_url %} {% trans "View it on edx.org at" %} {% endif %} {% if object.preview_url %} {{ object.preview_url }} {% endif %}
{% endif %}
{% include 'alert_messages.html' %}
{% include 'publisher/course_run_detail/_all.html' %}
{% if can_view_all_tabs %}
{% include 'publisher/course_run_detail/_studio.html' %}
{% include 'publisher/course_run_detail/_cat.html' %}
{% include 'publisher/course_run_detail/_drupal.html' %}
{% include 'publisher/course_run_detail/_salesforce.html' %}
{% endif %}
{% include 'publisher/course_run_detail/_instructor_profile.html' %} {% endblock %} {% block extra_js %} {% endblock %}