{% extends 'enterprise/base.html' %} {% load staticfiles enterprise %} {% block extrastyles %} {% endblock %} {% block extrahead %} {% endblock %} {% block contents %}

{{ platform_name }}


{{ welcome_text }}

{% autoescape off %}{{ enterprise_welcome_text }}{% endautoescape %}

{# Display success, error, warning or info messages #} {% alert_messages messages %} {% if is_learner_eligible_for_one_click_purchase %}

{{ page_title }}

{{ program_title }}
{{ organization_text }}
{{ program_overview }}
    {# Common bullet points #}
  • {{ course_count_text }}
  • {# Extra bullet points #} {% for bullet_point in item_bullet_points %}
  • {{ bullet_point }}
  • {% endfor %}
{{ purchase_text }} {% if is_discounted %} {{ program_price }} {{ program_discounted_price }}
{% autoescape off %}{{ discount_provider }}{% endautoescape %} {% else %} {{ program_price }} {% endif %}
{% else %}

{{ program_not_eligible_for_one_click_purchase_text }}

{% endif %}
{# Program Summary Box #}
{% if is_learner_eligible_for_one_click_purchase %}
{{ summary_header }}
{# Courses #} {# Price #} {# Length #} {# Effort #}
{{ course_count_text }}: {% for course in courses %}
{% if course.course_runs.0.is_enrolled %} {% if course.course_runs.0.upgrade_url == None %} {{ course.title }} ({{ enrolled_in_course_and_paid_text }}) {% else %} {{ course.title }}
({{ enrolled_in_course_and_unpaid_text }}) {% endif %} {% else %} {{ course.title }} {% endif %}
{% endfor %}
{{ price_text }}: {{ purchase_text }} {% if is_discounted %} {{ program_price }} {{ program_discounted_price }}
{% autoescape off %}{{ discount_provider }}{% endautoescape %} {% else %} {{ program_price }} {% endif %}
{{ length_text }}: {{ length_info_text }}
{{ effort_text }}: {{ effort_info_text }}
{% endif %}
{% endblock %}