course_enrollment_message.html 1.36 KB
Newer Older
1
<%! from django.utils.translation import ugettext as _ %>
Will Daly committed
2
% for course_msg in course_enrollment_messages:
3
    <div class="wrapper-msg urgency-high">
4 5
        <div class="msg has-actions">
            <div class="msg-content donate-content">
6 7
                <h2 class="sr">${_("Enrollment Successful")}</h2>
                <div class="copy">
8
                    <p>${_("Thank you for enrolling in {enrolled_course}. We hope you enjoy the course.").format(enrolled_course=course_msg["course_name"])}</p>
Will Daly committed
9
                    % if course_msg["allow_donation"]:
10 11 12 13 14
                        <p>
                            ${_("{platform_name} is a nonprofit bringing high-quality education to everyone, everywhere. "
                                "Your help allows us to continuously improve the learning experience for millions and "
                                "make a better future one learner at a time.").format(platform_name=platform_name)}
                        </p>
Will Daly committed
15
                    % endif
16 17
                </div>
            </div>
18
            % if course_msg["allow_donation"]:
19 20 21 22
                <div class="nav-actions donate-actions">
                    <h3 class="sr">${_('Donation Actions')}</h3>
                    <div class="donate-container" data-course="${ course_msg['course_id'] }"></div>
                </div>
23
            % endif
24 25
        </div>
    </div>
26
% endfor