{% load i18n %} {% block content %}
{% trans "Course Name" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.title }}
{% trans "Organization" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.organization_name }}
{% trans "Number" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.number }}
{% trans "Start Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.start|date:"M d, Y, H:i:s A" }}
{% trans "End Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.end|date:"M d, Y, H:i:s A" }}
{% trans "Pacing Type" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.pacing_type }}
{% endblock %}