Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
a2dc27e6
Commit
a2dc27e6
authored
Sep 25, 2017
by
Gabe Mulley
Committed by
Gabe Mulley
Sep 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix multi-course emails and update ACE
parent
71ab4ecc
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
12 deletions
+12
-12
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html
+3
-3
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt
+1
-1
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/from_name.txt
+1
-1
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html
+3
-3
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt
+1
-1
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/from_name.txt
+1
-1
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt
+1
-1
requirements/edx/base.txt
+1
-1
No files found.
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html
View file @
a2dc27e6
...
...
@@ -2,7 +2,7 @@
{% load i18n %}
{% block preview_text %}
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Many {{ platform_name }} learners are completing more problems every week, and
participating in the discussion forums. What do you want to do to keep learning?
...
...
@@ -22,7 +22,7 @@
<h1>
{% trans "Keep up the momentum!" %}
</h1>
<p>
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Many edX learners are completing more problems every week, and
participating in the discussion forums. What do you want to do to keep learning?
...
...
@@ -37,7 +37,7 @@
<p>
<!-- email client support for style sheets is pretty spotty, so we have to inline all of these styles -->
<a
{%
if
courses
|
length
>
1 %}
{%
if
course
_id
s
|
length
>
1 %}
href="{{ dashboard_url }}"
{% else %}
href="{{ course_url }}"
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt
View file @
a2dc27e6
{% load i18n %}
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Many edX learners are completing more problems every week, and
participating in the discussion forums. What do you want to do to keep learning?
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/from_name.txt
View file @
a2dc27e6
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{{ platform_name }}
{% else %}
{{ course_name }}
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html
View file @
a2dc27e6
...
...
@@ -2,7 +2,7 @@
{% load i18n %}
{% block preview_text %}
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Remember when you enrolled in {{ course_name }}, and other courses on edX.org? We do, and we’re glad
to have you! Come see what everyone is learning.
...
...
@@ -22,7 +22,7 @@
<h1>
{% trans "Keep learning today" %}.
</h1>
<p>
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Remember when you enrolled in
<strong>
{{ course_name }}
</strong>
, and other courses on edX.org? We do, and we’re glad
to have you! Come see what everyone is learning.
...
...
@@ -38,7 +38,7 @@
<p>
<!-- email client support for style sheets is pretty spotty, so we have to inline all of these styles -->
<a
{%
if
courses
|
length
>
1 %}
{%
if
course
_id
s
|
length
>
1 %}
href="{{ dashboard_url }}"
{% else %}
href="{{ course_url }}"
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt
View file @
a2dc27e6
{% load i18n %}
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans trimmed %}
Remember when you enrolled in {{ course_name }}, and other courses on edX.org? We do, and we’re glad
to have you! Come see what everyone is learning.
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/from_name.txt
View file @
a2dc27e6
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{{ platform_name }}
{% else %}
{{ course_name }}
...
...
openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt
View file @
a2dc27e6
{% load i18n %}
{% if courses|length > 1 %}
{% if course
_id
s|length > 1 %}
{% blocktrans %}Keep learning on {{ platform_name }}{% endblocktrans %}
{% else %}
{% blocktrans %}Keep learning in {{course_name}}{% endblocktrans %}
...
...
requirements/edx/base.txt
View file @
a2dc27e6
...
...
@@ -38,7 +38,7 @@ django==1.8.18
django-waffle==0.12.0
djangorestframework-jwt==1.11.0
enum34==1.1.6
edx-ace==0.1.
4
edx-ace==0.1.
5
edx-ccx-keys==0.2.1
edx-celeryutils==0.2.6
edx-drf-extensions==1.2.3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment