<h5class="hd-5 emphasized approvals-heading">{% trans "REVIEWS" %}</h5>
<h5class="hd-5 emphasized approvals-heading">{% trans "REVIEWS" %}</h5>
{% if is_course_run and not object.course.course_state.is_approved %}
{% if is_course_run and not course_run.course.course_state.is_approved %}
<divclass="parent-course-approval">
<divclass="parent-course-approval">
{% url 'publisher:publisher_course_detail' object.course.id as course_url %}
{% url 'publisher:publisher_course_detail' course_run.course.id as course_url %}
{% with link_start='<ahref="' link_middle='">' link_end='</a>' %}
{% with link_start='<ahref="' link_middle='">' link_end='</a>' %}
{% blocktrans with course_name=object.course.title trimmed %}
{% blocktrans with course_name=course_run.course.title trimmed %}
You can currently edit information for this course run. However, before you can submit this course run for review, you must finalize the information for {{ link_start }}{{ course_url }}{{ link_middle }}{{ course_name }}{{ link_end }} with edX.
You can currently edit information for this course run. However, before you can submit this course run for review, you must finalize the information for {{ link_start }}{{ course_url }}{{ link_middle }}{{ course_name }}{{ link_end }} with edX.
{% endblocktrans %}
{% endblocktrans %}
{% endwith %}
{% endwith %}
...
@@ -19,8 +19,8 @@
...
@@ -19,8 +19,8 @@
<divclass="preview-container">
<divclass="preview-container">
<divclass="layout-1q3q layout-reversed">
<divclass="layout-1q3q layout-reversed">
<divclass="layout-col layout-col-a">
<divclass="layout-col layout-col-a">
{% if object.preview_url %}
{% if course_run.preview_url %}
{% if object.preview_url and object.course.course_team_admin == request.user and object.course_run_state.is_approved and not object.course_run_state.is_preview_accepted %}
{% if is_in_preview_review and course_run.course.course_team_admin == request.user %}
{% blocktrans trimmed with owner=object.course_run_state.owner_role reviewer_user='tasawer'%}
{% blocktrans trimmed with owner=course_run.course_run_state.owner_role reviewer_user='tasawer'%}
The {{ current_team_name }} is currently reviewing this course run. If you edit course run information, you might overwrite the team’s changes, and you will have to send the course run to the {{ team_name }} for review again.
The {{ current_team_name }} is currently reviewing this course run. If you edit course run information, you might overwrite the team’s changes, and you will have to send the course run to the {{ team_name }} for review again.
{% endblocktrans %}
{% endblocktrans %}
</p>
</p>
<divclass="actions">
<divclass="actions">
<aclass="btn-cancel closeModal"href="#">{% trans "Cancel" %}</a>
<aclass="btn-cancel closeModal"href="#">{% trans "Cancel" %}</a>
<aclass="btn-brand btn-base btn-accept"type="button"href="{% url 'publisher:publisher_course_runs_edit' object.id %}">{% trans "Edit" %}</a>
<aclass="btn-brand btn-base btn-accept"type="button"href="{% url 'publisher:publisher_course_runs_edit' course_run.id %}">{% trans "Edit" %}</a>
<!-- Is it possible to make "View it on edx.org" into a link? If so, make it into a link, add a period at the end, and delete "at". If not, keep "at", but remove the colon and add a period after the link. -->
<!-- Is it possible to make "View it on edx.org" into a link? If so, make it into a link, add a period at the end, and delete "at". If not, keep "at", but remove the colon and add a period after the link. -->
{% blocktrans with publish_date|date:'m/d/y' as course_publish_date trimmed %}
{% 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 }}.
The About page for this course run was published on {{ course_publish_date }}.