{% extends 'publisher/base.html' %} {% load i18n %} {% load static %} {% block title %} {% trans "Dashboard" %} {% endblock title %} {% block page_content %}

{% trans "COURSE ABOUT PAGES" %}

{% trans "EdX Publisher is used to create course About pages. Users enter, review, and approve content in Publisher. Publisher keeps track of the details and sends email updates when actions are necessary." %}

{% trans "EdX Publisher is a companion to edX Studio. Course teams enter About page information in Publisher, and course content in Studio." %}

{% trans "Add a New Course" %} {% trans "Add a Course Run" %}
{% with studio_count=studio_request_courses|length published_count=published_course_runs|length preview_count=preview_course_runs|length in_progress_count=in_progress_course_runs|length %}

{% trans "Course runs" %}

{% include "publisher/dashboard/_in_progress.html" %}
{% if is_project_coordinator %}
{% include "publisher/dashboard/_studio_requests.html" %}
{% endif %}
{% include "publisher/dashboard/_published.html" %}
{% endwith %} {% endblock %} {% block extra_js %} {% endblock %}