{% extends 'ace_common/edx_ace/common/base_body.html' %} {% load i18n %} {% load static %} {% block content %}
{% filter force_escape %} {% blocktrans %}You have been invited to {{ course_name }}{% endblocktrans %} {% endfilter %}
{% filter force_escape %}
{% blocktrans %}You have been invited to join {{ course_name }} at {{ site_name }} by a member of the course staff.{% endblocktrans %}
{% endfilter %}
{% filter force_escape %}
{% blocktrans %}To access this course click on the button below and login:{% endblocktrans %}
{% endfilter %}
{% filter force_escape %}
{% blocktrans %}To access this course visit it and register:{% endblocktrans %}
{% endfilter %}
{% filter force_escape %}
{% blocktrans %}Please finish your registration and fill out the registration form making sure to use {{ email_address }} in the Email field:{% endblocktrans %}
{% endfilter %}
{% if auto_enroll %}
{% filter force_escape %}
{% blocktrans %}Once you have registered and activated your account, you will see {{ course_name }} listed on your dashboard.{% endblocktrans %}
{% endfilter %}
{% elif course_about_url is not None %}
{% filter force_escape %}
{% blocktrans %}Once you have registered and activated your account, you will be able to access this course:{% endblocktrans %}
{% endfilter %}
{% include "ace_common/edx_ace/common/return_to_course_cta.html" with course_cta_text=course_name course_cta_url=course_about_url %}
{% else %}
{% filter force_escape %}
{% blocktrans %}You can then enroll in {{ course_name }}.{% endblocktrans %}
{% endfilter %}
{% endif %}
{% filter force_escape %}
{% blocktrans %}This email was automatically sent from {{ site_name }} to {{ email_address }}{% endblocktrans %}
{% endfilter %}
|