|
3 | 3 | {% load django_markup %} |
4 | 4 |
|
5 | 5 | {% block body %} |
| 6 | + |
6 | 7 | <p> |
7 | 8 | {% trans "Hi Course Team," %} |
8 | 9 | </p> |
9 | 10 |
|
| 11 | +{% if days_to_expire == '60 days' or days_to_expire == '30 days' or days_to_expire == '15 days' %} |
| 12 | + |
| 13 | +<p> |
| 14 | +{% blocktrans with course_name=course_name course_key=course_key course_end_date=course_end_date days=days_to_expire %} |
| 15 | +This is an automated reminder that the course "{{ course_name }}" ({{ course_key }}) is scheduled to end in {{ days }} on {{ course_end_date }}. |
| 16 | +{% endblocktrans %} |
| 17 | +</p> |
| 18 | + |
| 19 | +<p> |
| 20 | +{% trans "If no action is taken, the course will be automatically archived after this date. If you decide not to extend the course or create a new run at this time, please inform your dedicated Project Coordinator and share your plans. This helps ensure our internal teams remain aligned and can support you effectively." %} |
| 21 | +</p> |
| 22 | + |
| 23 | +<p> |
| 24 | +{% trans "To ensure a smooth experience for our edX Learners, please take one of the following actions:" %} |
| 25 | +</p> |
| 26 | + |
| 27 | +<ul> |
| 28 | +<li> |
| 29 | +<strong>{% trans "Create a New Course Run:" %}</strong> |
| 30 | +{% trans "Planning to update the content or offer the course to a new cohort? We recommend setting up a new course run in Publisher." %} |
| 31 | +{% trans "You can get started" %} |
| 32 | +<a href="{{ publisher_url }}courses/{{ course_uuid }}"> {% trans "here" %} </a>. |
| 33 | +</li> |
| 34 | + |
| 35 | +<li> |
| 36 | +<strong>{% trans "Extend the Course End Date:" %}</strong> |
| 37 | +{% trans "If the content is still relevant, you can extend the course end date in Studio." %} |
| 38 | +{% trans "Simply visit the Schedule and Details tab" %} |
| 39 | +<a href="{{ course_schedule_settings_url }}"> {% trans "here" %} </a>. |
| 40 | +</li> |
| 41 | +</ul> |
| 42 | + |
| 43 | +{% elif days_to_expire == '7 days' %} |
| 44 | + |
| 45 | +<p> |
| 46 | +{% blocktrans with course_name=course_name course_key=course_key course_end_date=course_end_date %} |
| 47 | +Our records indicate that the course "{{ course_name }}" (Course Key: {{ course_key }}) is scheduled to end in 7 days on {{ course_end_date }}. Despite previous reminders, we’ve noticed that no action has been taken yet. |
| 48 | +{% endblocktrans %} |
| 49 | +</p> |
| 50 | + |
| 51 | +<p> |
| 52 | +<strong>{% trans "Important:" %}</strong> |
| 53 | +{% trans "If no action is taken, the course will be automatically archived after the current end date. If you choose not to extend or create a new course run at this time, you must inform your dedicated Project Coordinator with your reasons. This will ensure our internal teams are properly informed about your plans." %} |
| 54 | +</p> |
| 55 | + |
10 | 56 | <p> |
11 | | - {% if days_to_expire == '90 days' or days_to_expire == '30 days' or days_to_expire == '7 days' %} |
12 | | - {% blocktrans with course_name=course_name course_key=course_key course_end_date=course_end_date days=days_to_expire %} |
13 | | - This is an automated reminder that the course "{{ course_name }}" (Course Key: {{ course_key }}) is scheduled to end in {{ days }} on {{ course_end_date }}. |
14 | | - {% endblocktrans %} |
15 | | - <p> |
16 | | - {% trans "To ensure uninterrupted learner access and enrollment, please take one of the following actions:" %} |
17 | | - </p> |
18 | | - {% elif days_to_expire == 'course_ended' %} |
19 | | - {% blocktrans with course_name=course_name course_key=course_key course_end_date=course_end_date %} |
20 | | - This is an automated reminder that the course "{{ course_name }}" (Course Key: {{ course_key }}) has officially ended as of {{ course_end_date }}. |
21 | | - {% endblocktrans %} |
22 | | - <p> |
23 | | - {% trans "If this was intentional, no action is needed. However, if this course was meant to remain available, you have two options to restore access:" %} |
24 | | - </p> |
25 | | - {% endif %} |
| 57 | +{% trans "To prevent disruption to learner access, please choose one of the following options:" %} |
26 | 58 | </p> |
27 | 59 |
|
28 | 60 | <ul> |
29 | | - <li>{% trans "Extend the current course run’s end date if the same course is meant to remain available." %}</li> |
30 | | - <li> |
31 | | - {% trans "Create a new course run if you are planning to offer this course again with updated content, pacing, or a new cohort of learners." %} |
32 | | - <a href="{{ publisher_url }}courses/{{ course_uuid }}"> {% trans "Visit the Course in Publisher" %} </a> |
33 | | - </li> |
| 61 | +<li> |
| 62 | +<strong>{% trans "Create a New Course Run:" %}</strong> |
| 63 | +{% trans "Planning to update the content or offer the course to a new cohort? We recommend setting up a new course run in Publisher." %} |
| 64 | +{% trans "You can get started" %} |
| 65 | +<a href="{{ publisher_url }}courses/{{ course_uuid }}"> {% trans "here" %} </a>. |
| 66 | +</li> |
| 67 | + |
| 68 | +<li> |
| 69 | +<strong>{% trans "Extend the Course End Date:" %}</strong> |
| 70 | +{% trans "If the content is still relevant, you can extend the course end date in Studio." %} |
| 71 | +{% trans "Simply visit the Schedule and Details tab" %} |
| 72 | +<a href="{{ course_schedule_settings_url }}"> {% trans "here" %} </a>. |
| 73 | +</li> |
| 74 | +</ul> |
| 75 | + |
| 76 | +{% elif days_to_expire == 'course_ended' %} |
| 77 | + |
| 78 | +<p> |
| 79 | +{% blocktrans with course_name=course_name course_key=course_key course_end_date=course_end_date %} |
| 80 | +Our records show that the course "{{ course_name }}" (Course Key: {{ course_key }}) officially ended on {{ course_end_date }} and has now entered the archived state. Despite our previous reminders, it appears no action has been taken yet. |
| 81 | +{% endblocktrans %} |
| 82 | +</p> |
| 83 | + |
| 84 | +<p> |
| 85 | +<strong>{% trans "Important:" %}</strong> |
| 86 | +{% trans "If you decide not to extend the course or create a new course run at this time, you must inform your dedicated Project Coordinator with the reasons behind this. This will help ensure our internal teams are fully updated on your plans for the course." %} |
| 87 | +</p> |
| 88 | + |
| 89 | +<p> |
| 90 | +{% trans "If you wish to keep this course active, please choose one of the following options:" %} |
| 91 | +</p> |
| 92 | + |
| 93 | +<ul> |
| 94 | +<li> |
| 95 | +<strong>{% trans "Create a New Course Run:" %}</strong> |
| 96 | +{% trans "Planning to update the content or offer the course to a new cohort? We recommend setting up a new course run in Publisher." %} |
| 97 | +{% trans "You can get started" %} |
| 98 | +<a href="{{ publisher_url }}courses/{{ course_uuid }}"> {% trans "here" %} </a>. |
| 99 | +</li> |
| 100 | + |
| 101 | +<li> |
| 102 | +<strong>{% trans "Extend the Course End Date:" %}</strong> |
| 103 | +{% trans "If the content is still relevant, you can extend the course end date in Studio." %} |
| 104 | +{% trans "Simply visit the Schedule and Details tab" %} |
| 105 | +<a href="{{ course_schedule_settings_url }}"> {% trans "here" %} </a>. |
| 106 | +</li> |
34 | 107 | </ul> |
35 | 108 |
|
| 109 | +{% endif %} |
| 110 | + |
| 111 | +<p> |
| 112 | +<strong>{% trans "NOTE:" %}</strong> |
| 113 | +{% trans "This email address isn’t monitored for replies. If you have any questions or need assistance, please reach out to your dedicated Project Coordinator." %} |
| 114 | +</p> |
| 115 | + |
| 116 | +<p> |
| 117 | +{% trans "Thank you for your attention to this—looking forward to your updates!" %} |
| 118 | +</p> |
| 119 | + |
36 | 120 | <p> |
37 | | - {% trans "You can review and modify the course end settings here:" %} |
38 | | - <a href="{{ course_schedule_settings_url }}">{{ course_schedule_settings_url }}</a> |
39 | | - <br/> |
40 | | - {% if days_to_expire == 'course_ended' %} |
41 | | - {% blocktrans with partner_marketing_site_url=partner_marketing_site_url %} |
42 | | - If no action is taken, the course will no longer be available for enrollment or access by learners on |
43 | | - <a href="{{ partner_marketing_site_url }}">{{ partner_marketing_site_url }}</a> after the end date. |
44 | | - {% endblocktrans %} |
45 | | - <br/> |
46 | | - {% endif %} |
47 | | - {% trans "Thanks" %} |
| 121 | +{% trans "Best," %}<br/> |
| 122 | +{% trans "edX Operational Team" %} |
48 | 123 | </p> |
49 | 124 |
|
50 | | -<!-- End Message Body --> |
51 | 125 | {% endblock body %} |
0 commit comments